/* ============================================================
   SECTIONS — Mise en page de chaque section de la page
============================================================ */


/* ── Conteneur page (1280px fixe) ───────────────────────────── */
.page-section {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
}

/* ── Conteneur contenu (1180px centré) ─────────────────────── */
.inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--side-padding);
}


/* ============================================================
   1. HEADER
============================================================ */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--white);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

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

.header {
  width: 100%;
  max-width: var(--page-width);
  height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px var(--side-padding);
}

.logo {
  display: flex;
  align-items: center;
  height: 48px;
}

.logo img {
  height: 48px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

/* Wrapper des liens (desktop : flex row, mobile : menu déroulant) */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

/* Bouton hamburger — masqué sur desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}

/* Animation croix à l'ouverture */
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-link {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--dark);
  white-space: nowrap;
  line-height: 1;
  transition: opacity 0.15s;
}

.nav-link:hover { opacity: 0.6; }


/* ============================================================
   2. HERO
============================================================ */
.hero {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 24px var(--side-padding) 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-title {
  font-family: var(--font-condensed);
  font-size: 72px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -1px;
  line-height: 0.95;
  max-width: 600px;
}

.hero-links {
  display: flex;
  gap: 16px;
}


/* ============================================================
   3. IMAGE HERO + CARTE BLEUE
============================================================ */
.content-block {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 var(--side-padding) 32px;
}

.content-block-inner {
  display: flex;
  align-items: stretch;
  gap: 23px;
  height: 360px;
}

.content-image {
  flex: 1;
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-pattern-wrap {
  flex: none;
  align-self: stretch;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
}

.hero-pattern {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}


/* ============================================================
   4. NOS FORMATIONS
============================================================ */
.formations-section {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 48px var(--side-padding) var(--section-pad-v);
}

.formations-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  margin-bottom: 48px;
}


.filter-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.filter-label {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--dark);
  white-space: nowrap;
}

.filter-tags {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
  margin-bottom: var(--card-gap);
}

/* Carte extra : cachée sur desktop et mobile, visible uniquement sur tablette */
.training-card--extra { display: none; }

/* Carte panel-first : visible sur desktop/mobile dans le panel, cachée sur tablette (déjà dans la rangée principale) */
.training-card--panel-first { display: flex; }

.cards-row:last-child {
  margin-bottom: 0;
}

.more-formations-trigger {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.more-formations-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  border-bottom: 1.5px solid var(--blue);
  padding: 2px 0 5px 0;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--dark);
  background: none;
  cursor: pointer;
  transition: border-bottom-width 0.15s ease, padding-bottom 0.15s ease;
}

.more-formations-btn:hover { border-bottom-width: 3px; padding-bottom: 3.5px; }
.more-formations-btn img { transition: transform 0.2s ease; }
.more-formations-btn:hover img { transform: translate(3px, -3px); }

.more-formations-panel {
  margin-top: var(--card-gap);
}


/* ============================================================
   5. BANDEAU TÉMOIGNAGES
============================================================ */

/* Wrapper centré sans padding latéral — la card va bord à bord */
.testimonial-section {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
}

.testimonial-band {
  background: var(--green-mint);
  border-radius: var(--radius-large);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  gap: 48px;
  min-height: 227px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.testimonial-deco {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 479px;
  height: 227px;
  pointer-events: none;
  flex-shrink: 0;
  opacity: 0.25;
  height: 400px;
  filter: blur(6px);
}

.testimonial-title {
  font-family: var(--font-condensed);
  font-size: 56px;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  line-height: 1;
  letter-spacing: -0.5px;
}

.testimonial-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.testimonial-arrow {
  width: 24px;
  height: 24px;
  cursor: pointer;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.15s;
}

.testimonial-arrow:hover { opacity: 1; }

.testimonial-quote-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-60px); }
  to   { opacity: 1; transform: translateX(0); }
}

.testimonial-quote-wrapper.slide-next {
  animation: slide-in-right 0.5s ease both;
}

.testimonial-quote-wrapper.slide-prev {
  animation: slide-in-left 0.5s ease both;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.5;
  text-align: justify;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--dark);
}

.testimonial-author strong {
  font-weight: 700;
}


/* ============================================================
   6. LA MÉTHODE SEI
============================================================ */
.methode-section {
  width: 100%;
  padding: var(--section-pad-v) var(--side-padding);
  position: relative;
  overflow: hidden;
}

/* Décoration de fond (SVG koï) */
.methode-bg-deco {
  position: absolute;
  right: -60px;
  top: 80px;
  width: 300px;
  height: 280px;
  opacity: 0.08;
  pointer-events: none;
}

.methode-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
  max-width: var(--page-width);
  margin: 0 auto;
  z-index: 1;
}

/* Blocs contenu (image + texte, alternés) */
.methode-block {
  display: flex;
  gap: 100px;
  align-items: center;
  min-height: 360px;
}

.methode-block--reversed {
  flex-direction: row-reverse;
  gap: 96px;
}

.methode-image {
  width: 48%;
  min-width: 260px;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  /* Fond de couleur affiché si l'image est absente */
  background: linear-gradient(135deg, #c8e0f4, #6a9ac4);
}

.methode-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Variante de fond pour le 2e bloc */
.methode-image--green {
  background: linear-gradient(135deg, #d0e8d0, #50a050);
}

.methode-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.methode-block-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
}

.methode-block-desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--dark);
  line-height: 1.45;
}

/* Sous-section formateurs */
.instructors-section {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.instructor-card {
  display: flex;
  min-height: 470px;
}

/* Carte formateur 1 : photo gauche, info droite */
.instructor-card .instructor-photo {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.instructor-card .instructor-info-card {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* Carte formateur 2 : info gauche, photo droite (inversé) */
.instructor-card--reversed .instructor-photo {
  border-radius: var(--radius-large);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.instructor-card--reversed .instructor-info-card {
  border-radius: var(--radius-large);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
}


/* ============================================================
   7. NOTRE MÉTHODE (fond bleu)
============================================================ */
.notre-methode-section {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  background: var(--blue-medium);
  border-radius: 24px;
  padding: var(--section-pad-v) var(--side-padding);
  position: relative;
  overflow: hidden;
}

.notre-methode-bg-deco {
  position: absolute;
  width: 100%;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  display: block;
}

.notre-methode-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.notre-methode-section .section-title {
  color: var(--dark);
}

.method-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}

.method-card {
  transition: background-color 0.25s ease;
}

/* Quand le container est survolé, toutes les cards passent en bleu pâle */
.method-cards:hover .method-card {
  background-color: #7CACFF;
}

/* Sauf la card survolée */
.method-cards:hover .method-card:hover {
  background-color: var(--white);
}


/* ============================================================
   8. FAQ (fond jaune)
============================================================ */
.faq-section {
  width: 100%;
  max-width: var(--page-width);
  margin: 48px auto 0;
  background: var(--cream);
  padding: 72px var(--side-padding);
  border-radius: var(--radius-large);
}

.faq-inner {
  display: flex;
  gap: 42px;
}

.faq-left {
  width: 399px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 16px;
}

.faq-left-title {
  font-family: var(--font-condensed);
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  color: var(--dark);
  line-height: 93%;
  letter-spacing: -1.12px;
}

.faq-contact-link {
  border-bottom: 1.5px solid var(--blue);
  color: var(--dark);
  transition: border-bottom-width 0.15s ease, padding-bottom 0.15s ease;
}
.faq-contact-link:hover { border-bottom-width: 3px; }

.faq-left-desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--dark);
  line-height: 1.65;
}

.faq-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid var(--dark);
  padding: 24px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--dark);
}

.faq-question-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 25px;
  cursor: pointer;
}

.faq-question {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.3;
  flex: 1;
}

.faq-chevron {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--dark);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition:
    max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity    0.25s ease,
    margin-top 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 800px;
  opacity: 1;
  margin-top: 16px;
}


/* ============================================================
   9. WABI-SABI (fond bleu)
============================================================ */
.wabi-sabi-section {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  background: var(--blue);
  padding: var(--section-pad-v) var(--side-padding);
  position: relative;
  overflow: hidden;
}

.wabi-sabi-bg-deco {
  position: absolute;
  right: -50px;
  top: 60px;
  width: 300px;
  height: 260px;
  opacity: 0.2;
  pointer-events: none;
}

.wabi-sabi-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.wabi-sabi-title {
  font-family: var(--font-condensed);
  font-size: 72px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -1.44px;
  line-height: 0.93;
}

.wabi-sabi-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}

.wabi-sabi-card {
  background: var(--blue-light);
  border-radius: var(--radius-large);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 320px;
}

.wabi-sabi-card-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
}

.wabi-sabi-card-desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--dark);
  line-height: 1.65;
}


/* ============================================================
   10. CONTACT
============================================================ */
.contact-section {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0;
}

.contact-card {
  background: var(--green-mint);
  border-radius: var(--radius-large);
  padding: 72px 50px;
  display: flex;
  gap: 42px;
  align-items: flex-start;
}

/* ── Colonne gauche ──────────────────────────────────────── */
.contact-left {
  width: 378px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-left-title {
  font-family: var(--font-condensed);
  font-size: 56px;
  font-weight: 700;
  color: var(--dark);
  line-height: 0.93;
  letter-spacing: -1.12px;
}

.contact-left-desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--dark);
  line-height: 1.65;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-link {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -0.32px;
  border-bottom: 1px solid var(--orange);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color 0.15s ease, border-bottom-width 0.15s ease, padding-bottom 0.15s ease;
}

.contact-link:hover {
  color: var(--orange);
  border-bottom-width: 2px;
  padding-bottom: 3px;
}

/* ── Colonne droite : formulaire ─────────────────────────── */
.contact-right {
  flex: 1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-end;
}

.contact-field {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-label {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--dark);
  letter-spacing: -0.32px;
  line-height: 0.93;
}

.contact-input,
.contact-select,
.contact-textarea {
  width: 100%;
  background: var(--green-light);
  border: none;
  outline: none;
  padding: 11px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.1;
  appearance: none;
  -webkit-appearance: none;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: var(--dark);
  opacity: 0.5;
}

.contact-select-wrap {
  position: relative;
}

.contact-select-wrap .contact-select {
  cursor: pointer;
  padding-right: 44px;
}

.contact-select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.contact-textarea {
  resize: vertical;
  min-height: 165px;
}

.contact-submit {
  background: none;
  border: none;
  border-bottom: 4px solid var(--green-light);
  padding-bottom: 6px;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--dark);
  letter-spacing: -0.32px;
  cursor: pointer;
  transition: border-color 0.2s ease;
  align-self: center;
}

.contact-submit:hover {
  border-color: var(--dark);
}

.contact-success {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 0;
}

.contact-success-title {
  font-family: var(--font-condensed);
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.contact-success-desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--dark);
  line-height: 1.6;
}


/* ============================================================
   11. FOOTER
============================================================ */
.footer-section {
  width: min(100%, var(--page-width));
  margin: 0 auto;
  background: var(--blue);
  border-radius: var(--radius-large);
  padding: 69px var(--side-padding) 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 586px;
}

/* ── Décoration gauche : logomark blanc rogné ────────────── */
.footer-deco {
  position: absolute;
  left: -176px;
  top: -37px;
  width: 666px;
  height: 100%;
  pointer-events: none;
}

.footer-deco-img {
  width: 100%;
  height: auto;
}

/* ── Contenu droit ───────────────────────────────────────── */
.footer-content {
  position: relative;
  z-index: 1;
  margin-left: auto;
  width: 374px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
}

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

.footer-nav-link {
  font-family: var(--font-condensed);
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  line-height: 0.93;
  letter-spacing: -0.84px;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-nav-link:hover {
  color: var(--white);
}

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

.footer-social-row {
  display: flex;
  gap: 12px;
}

.footer-link {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -0.32px;
  border-bottom: 1px solid var(--dark);
  padding-bottom: 3px;
  align-self: flex-start;
  transition: color 0.15s ease;
}

.footer-link:hover {
  opacity: 0.7;
}

.footer-logo-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  width: 122px;
  height: auto;
}

/* ── Mentions légales ─────────────────────────────────────── */
.footer-legal {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(2, 12, 29, 0.2);
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--dark);
  opacity: 0.6;
}

.footer-legal-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 12px;
  opacity: 0.6;
}

.footer-legal-link {
  color: var(--dark);
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.footer-legal-link:hover {
  opacity: 1;
  text-decoration: underline;
}


/* ============================================================
   12. STICKY CTA
============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  right: 34px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 12px 16px 12px 20px;
  background-color: var(--blue-medium);
  text-decoration: none;
  transition: background-color 0.15s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: bottom right;
}

.sticky-cta:hover {
  background-color: var(--blue);
  transform: scale(1.08);
}

.sticky-cta:hover .sticky-cta-title,
.sticky-cta:hover .sticky-cta-sub {
  color: var(--white);
}

.sticky-cta-sub img {
  transition: filter 0.15s ease;
}

.sticky-cta:hover .sticky-cta-sub img {
  filter: brightness(0) invert(1);
}

.sticky-cta-title {
  font-family: var(--font-condensed);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  transition: color 0.15s ease;
}

.sticky-cta-sub {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  margin-top: 4px;
  transition: color 0.15s ease;
}

/* ============================================================
   13. DRAWER (fiche formation)
============================================================ */
.training-card { cursor: default; }

.card-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  justify-content: flex-end;
}

.card-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 12, 29, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.card-drawer.open .card-drawer-overlay { opacity: 1; }

.card-drawer-panel {
  position: relative;
  width: 690px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1;
}

.card-drawer.open .card-drawer-panel { transform: translateX(0); }

.card-drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: 2px;
}

.card-drawer-header {
  min-height: 260px;
  background: var(--blue);
  padding: 64px 32px 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.card-drawer-title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.1;
  max-width: 65%;
}

.card-drawer-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.card-drawer-icon img { width: 100%; height: 100%; }

.card-drawer-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
  background: var(--blue-light); /* fallback */
}

/* Couleur du body selon la card */
.card-drawer-body.card-body--peach    { background: var(--peach); }
.card-drawer-body.card-body--mint     { background: var(--green-light); }
.card-drawer-body.card-body--lavender { background: var(--lavender); }
.card-drawer-body.card-body--cream    { background: var(--cream); }

.card-drawer-tags { display: flex; gap: 8px; flex-wrap: wrap; }

.card-drawer-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.card-drawer-detail-box {
  background: transparent;
  border: 1.5px solid var(--blue);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.card-drawer-detail-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.card-drawer-detail-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card-drawer-section-title {
  font-family: var(--font-condensed);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.1;
}

.card-drawer-section-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--dark);
  line-height: 1.65;
}

.card-drawer-links { display: flex; gap: 32px; padding-top: 8px; }
