:root {
  --cream: #f9f6f1;
  --warm-white: #fdfcfa;
  --sage: #8694B7;
  --sage-light: #a8b8cf;
  --stone: #8c8070;
  --stone-light: #c4b9ae;
  --dark: #2a2620;
  --mid: #5a524a;
  --text: #3d3730;
  --blue-card: #8694B7;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --nav-h: 70px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--warm-white);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(253,252,250,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(140,128,112,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.nav-logo-text span {
  display: block;
  font-size: 0.72rem;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--stone);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 400;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--sage);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--dark); }
.nav-links a:hover::after { transform: scaleX(1); }
.btn-contact-sticky {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage);
  color: white;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-contact-sticky:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(134,148,183,0.4);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--warm-white);
  border-bottom: 1px solid rgba(140,128,112,0.15);
  z-index: 999;
  flex-direction: column;
  padding: 20px 30px 30px;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 400;
  padding: 14px 0;
  border-bottom: 1px solid rgba(140,128,112,0.1);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--sage); }
.mobile-menu .btn-contact-sticky {
  margin-top: 20px;
  align-self: flex-start;
  border-bottom: none;
  padding: 10px 22px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 40px) 30px 60px;
  background-color: #e8e2da;
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(240, 235, 228, 0.72);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, transparent 20%);
  z-index: 0;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 620px; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.hero h1 em { font-style: italic; color: var(--sage); }
.hero-sub {
  font-size: clamp(0.85rem, 2vw, 0.98rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
  font-weight: 400;
}
.hero-desc {
  font-size: 0.95rem;
  color: var(--mid);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

/* ─── SECTIONS GÉNÉRALES ─── */
section { padding: 56px 30px; }
.container { max-width: 950px; margin: 0 auto; }
.carousel-wrapper { max-width: 1100px; margin-left: auto; margin-right: auto; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--dark);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--sage); }
.section-text {
  font-size: 0.92rem;
  color: var(--mid);
  max-width: 680px;
  margin: 0 auto 20px;
  text-align: justify;
  line-height: 1.75;
}

/* ─── BTN ─── */
.btn {
  display: inline-block;
  padding: 11px 28px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--sage); color: white; }
.btn-primary:hover {
  background: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42,38,32,0.18);
}
.btn-outline {
  background: transparent;
  color: var(--sage);
  border: 1.5px solid var(--sage);
}
.btn-outline:hover {
  background: var(--sage);
  color: white;
  transform: translateY(-2px);
}

/* ─── CARROUSEL ─── */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}
.carousel-btn {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid var(--stone-light);
  color: var(--stone);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 2;
}
.carousel-btn:hover { background: var(--sage); border-color: var(--sage); color: white; }
.carousel-btn svg { width: 16px; height: 16px; }
.carousel-track-container {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
.carousel-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.carousel-item {
  flex-shrink: 0;
  flex-grow: 0;
  aspect-ratio: 3/2;
  border-radius: 8px;
  overflow: hidden;
  background: var(--stone-light);
  
}
.carousel-item.portrait {
  aspect-ratio: 2/3;
}
.carousel-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.carousel-item:hover img { transform: scale(1.04); }
.photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--stone-light) 0%, var(--sage-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  text-align: center;
  padding: 10px;
}

/* ─── REGARD ─── */
.section-regard { background: var(--warm-white); }
.regard-meta {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: 40px;
}

/* ─── ÉVÉNEMENTS ─── */
.section-events { background: var(--cream); }
.events-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.events-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--stone-light);
  filter: drop-shadow(0 12px 24px rgba(42,38,32,0.42));
}
.events-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.events-text h2 { text-align: left; margin-bottom: 16px; }
.events-text .section-text { text-align: justify; margin-bottom: 24px; }
.events-text .btn { display: block; width: fit-content; margin: 0 auto; }

/* ─── SÉANCES ─── */
.section-seances { background: var(--warm-white); }
.seances-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.seances-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--stone-light);
  order: 2;
  filter: drop-shadow(0 12px 24px rgba(42,38,32,0.42));
}
.seances-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.seances-text { order: 1; }
.seances-text h2 { text-align: left; margin-bottom: 16px; }
.seances-text .section-text { text-align: justify; margin-bottom: 24px; }
.seances-text .btn { display: block; width: fit-content; margin: 0 auto; }

/* ─── CRÉATION ─── */
.section-creation { background: var(--cream); }

/* ─── TERRITOIRE ─── */
.section-territoire { background: var(--warm-white); }
.territoire-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.territoire-text { order: 1; }
.territoire-img {
  order: 2;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--stone-light);
  filter: drop-shadow(0 12px 24px rgba(42,38,32,0.42));
}
.territoire-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.territoire-text h2 { text-align: left; margin-bottom: 16px; }
.territoire-text .section-text { margin-left: 0; margin-bottom: 24px; }
.territoire-text .btn { display: block; width: fit-content; margin: 0 auto; }

/* ─── À PROPOS ─── */
.section-about { background: var(--warm-white); }
.about-card {
  background: var(--blue-card);
  border-radius: 20px;
  padding: 48px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 12px 40px rgba(42,38,32,0.25);
  filter: drop-shadow(0 12px 24px rgba(42,38,32,0.30));
}
.about-card-inner {
  display: flex;
  gap: 36px;
  align-items: flex-start;
}
.about-photo-wrap {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.5);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.about-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-card-content { flex: 1; }
.about-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: white;
  text-align: center;
  margin-bottom: 4px;
}
.about-card-sub {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-align: center;
  margin-bottom: 20px;
}
.about-card-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.9;
  margin-bottom: 16px;
  text-align: justify;
}
.about-card-signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
}
@media (max-width: 600px) {
  .about-card { padding: 28px 20px; }
  .about-card-inner { flex-direction: column; align-items: center; }
  .about-card-title { margin-top: 12px; }
}

/* ─── VALEURS + ZONE ─── */
.section-valeurs-zone { background: var(--cream); }
.valeurs-zone-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.valeurs-col .section-title { margin-bottom: 24px; }
.valeurs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.valeur-card {
  background: var(--blue-card);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  color: white;
}
.valeur-card:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 32px rgba(134,148,183,0.35);
}
.valeur-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
}
.zone-col .zone-title { margin-bottom: 12px; }
.zone-map {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
  box-shadow: 0 4px 20px rgba(42,38,32,0.1);
  margin-top: 16px;
}
.zone-map:hover { transform: scale(1.02); }
.zone-map canvas { display: block; width: 100%; }
.zone-caption {
  font-size: 0.8rem;
  color: var(--stone);
  margin-top: 10px;
  font-style: italic;
}

/* ─── MODAL VALEURS ─── */
.valeur-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(42,38,32,0.55);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.valeur-modal-overlay.open { display: flex; }
.valeur-modal {
  background: white;
  border-radius: 16px;
  max-width: 460px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(42,38,32,0.2);
  animation: modalIn 0.3s ease;
  position: relative;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.94) translateY(16px); }
  to { opacity: 1; transform: none; }
}
.valeur-modal-body { padding: 36px; }
.valeur-modal-body h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 14px;
}
.valeur-modal-body p {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.9;
  text-align: justify;
}
.valeur-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--mid);
  transition: background 0.2s;
}
.valeur-modal-close:hover { background: var(--cream); }

/* ─── PARLONS PROJET ─── */
.section-projet { background: var(--warm-white); text-align: center; }
.projet-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 28px 0;
}
.icon-link {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--stone-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  text-decoration: none;
  transition: all 0.2s;
}
.icon-link:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: white;
  transform: scale(1.08);
}
.icon-link svg { width: 20px; height: 20px; }


/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 50px 30px 30px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}
.footer-logo {
  height: 50px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}
.footer-brand a { text-decoration: none; }
.footer-brand a h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: white;
  margin-bottom: 8px;
}
.footer-brand a:hover h3 { color: var(--sage-light); transition: color 0.2s; }
.footer-brand p { font-size: 0.82rem; line-height: 1.7; }
.footer-links { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-contact-link {
  display: flex !important;
  align-items: center;
  gap: 10px;
}
.footer-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-icon svg { width: 14px; height: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
}
.footer-bottom a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: white; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .btn-contact-sticky.desktop-only { display: none; }
  .burger { display: flex; }
  .events-layout, .seances-layout, .territoire-layout { grid-template-columns: 1fr; gap: 32px; }
  .seances-img { order: 0; }
  .territoire-img { order: 0; }
  .territoire-text { order: 1; }
  .valeurs-zone-layout { grid-template-columns: 1fr; gap: 40px; }
  .valeurs-grid { grid-template-columns: repeat(4, 1fr); }
  .about-layout { grid-template-columns: 1fr; text-align: center; }
  .about-photo { margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .hero { align-items: flex-end; padding-bottom: 180px; }
}
@media (max-width: 600px) {
  nav { padding: 0 20px; }
  section { padding: 60px 20px; }
  .valeurs-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .valeur-card { padding: 20px 14px; }
  .footer-links { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 400px) {
  .hero-content { padding-top: 60%; }
}

/* ─── PROTECTION PHOTOS ─── */
img {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}
.photo-item, .carousel-item, .galerie-card-img,
.events-img, .seances-img, .territoire-img {
  -webkit-user-select: none;
  user-select: none;
  position: relative;
}
/* Overlay invisible par-dessus les images pour bloquer l'interaction directe */
.photo-item::after,
.galerie-card-img::after,
.events-img::after,
.seances-img::after,
.territoire-img::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}
/* Sauf sur photo-item où le clic doit passer pour la lightbox */
.photo-item::after { z-index: 0; }

/* ─── SOUS-MENU GALERIE ─── */
.nav-links li.has-submenu { position: relative; }
.submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: -16px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(42,38,32,0.14);
  padding: 8px;
  margin: 0;
  list-style: none;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 200;
}
.submenu li {
  list-style: none;
  list-style-type: none;
}
.submenu li::marker { content: none; }
.nav-links li.has-submenu:hover .submenu,
.nav-links li.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu a {
  display: block;
  padding: 9px 14px;
  font-size: 0.86rem;
  color: var(--mid);
  border-radius: 6px;
  white-space: nowrap;
}
.submenu a:hover { background: var(--cream); color: var(--sage); }

/* ─── SOUS-MENU GALERIE MOBILE (accordéon) ─── */
.mobile-menu-item-with-sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.mobile-menu-item-with-sub > a { flex: 1; }
.mobile-submenu-toggle {
  width: 34px; height: 34px;
  flex: 0 0 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--stone-light);
  border-radius: 8px;
  background: none;
  cursor: pointer;
  color: var(--dark);
  transition: transform 0.25s ease, background 0.2s ease;
}
.mobile-submenu-toggle svg { width: 14px; height: 14px; transition: transform 0.25s ease; }
.mobile-submenu-toggle.open svg { transform: rotate(180deg); }
.mobile-submenu-toggle:hover { background: var(--cream); }
.mobile-submenu {
  display: none;
  flex-direction: column;
  gap: 0;
  margin: -6px 0 6px 16px;
  padding-left: 14px;
  border-left: 1.5px solid var(--stone-light);
}
.mobile-submenu.open { display: flex; }
.mobile-submenu a {
  font-size: 0.92rem;
  color: var(--mid);
  padding: 8px 0;
}

/* ─── CARTE CADEAU ─── */
.carte-cadeau-card {
  text-align: center;
}
.carte-cadeau-card .section-title { margin-bottom: 16px; }
.carte-cadeau-card .section-text { max-width: 100%; margin-left: auto; margin-right: auto; margin-bottom: 12px; }
.carte-cadeau-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(42,38,32,0.10);
  margin: 24px 0;
}
.carte-cadeau-img img { width: 100%; display: block; }

/* ─── LARGEUR TEXTE ACCUEIL (même largeur que carrousel/container) ─── */
.section-regard .section-text,
.section-creation .section-text,
.section-projet .section-text,
.carte-cadeau-card .section-text {
  max-width: 100%;
}
