/*
Theme Name: La Fée Maison
Description: Thème enfant de Ascend Premium
Author: Thonny / Team Helper
Author URI: https://team-helper.fr
Template: ascend_premium
Version: 1.9.32
*/
/* ================================================================
   1. DESIGN TOKENS
================================================================ */
:root {
  --nude:        #E7CFAF;
  --rose-poudre: #E89AA0;
  --rose-fraise: #D25F79;
  --prune:       #A93663;
  --bordeaux:    #5E0027;
  --ivoire:      #FAF7F2;
  --gris-clair:  #F1EEEA;
  --texte:       #2E2A2A;
  --texte-doux:  #6B5B5B;
  --blanc:       #FFFFFF;

  --font-display: 'Cormorant Garamond', serif;
  --font-script:  'Great Vibes', cursive;
  --font-body:    'Jost', sans-serif;

  --transition: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm:  0 2px  16px rgba(93, 0, 39, 0.06);
  --shadow-md:  0 8px  40px rgba(93, 0, 39, 0.10);
  --shadow-lg:  0 20px 60px rgba(93, 0, 39, 0.14);
}


/* ================================================================
   2. RESET & BASE (complémentaire à Bootstrap)
================================================================ */
body {
  font-family: var(--font-body);
  color: var(--texte);
  background: var(--ivoire);
  -webkit-font-smoothing: antialiased;
}
.nav-main ul.sf-menu > li > a, .kad-header-menu-inner .kt-header-extras ul.sf-menu > li > a, .kad-header-menu-inner .kt-header-extras .kt-extras-label [class*="kt-icon-"], .kt-header-extras .sf-vertical > li > a, #logo a.brand, #mobile-logo a.brand{
  text-decoration: none;
}
/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* Scrollbar */
::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: var(--ivoire); }
::-webkit-scrollbar-thumb { background: var(--nude); border-radius: 2px; }


/* ================================================================
   3. TYPOGRAPHIE & UTILITAIRES
================================================================ */
.serif  { font-family: var(--font-display); }
.script { font-family: var(--font-script); }

.label {
  font-family: var(--font-body);
  text-transform: uppercase;
  color: var(--prune);
  font-weight: 500;
}
.label-light { color: var(--nude); }

.section-title {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--texte);
}
.section-title em          { font-style: italic; color: var(--prune); }
.section-title-light       { color: var(--ivoire); }
.section-title-light em    { color: var(--rose-poudre); }

.body-text {
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.95;
  color: var(--texte-doux);
}
.body-text strong { color: var(--texte); font-weight: 500; }

.script-drop,
.script-line,
.script-accent {
  font-family: var(--font-script);
  color: var(--rose-fraise);
  display: block;
  line-height: 1.05;
}

.section-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Divider ✦ */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
}
.divider::before { background: linear-gradient(to right, transparent, var(--nude)); }
.divider::after  { background: linear-gradient(to left,  transparent, var(--nude)); }
.divider-icon    { color: var(--rose-poudre); font-size: 1rem; line-height: 1; }

/* Bande palette dégradée */
.hero-band {
  height: 6px;
  background: linear-gradient(to right,
    var(--nude), var(--rose-poudre), var(--rose-fraise), var(--prune), var(--bordeaux));
}


/* ================================================================
   4. BOUTONS
================================================================ */
.btn-lm {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-lm-primary, div.wpforms-container-full button[type="submit"]:not(:hover):not(:active) {
  background: var(--bordeaux);
  color: var(--ivoire);
  padding: 0.9rem 2rem;
  border: 1px solid var(--bordeaux);
  border-radius: 40px;
}
.btn-lm-primary:hover, div.wpforms-container-full button[type="submit"]:hover {
  background: var(--prune);
  border-color: var(--prune);
  color: var(--ivoire);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-radius: 40px;
}

.btn-lm-outline {
  background: transparent;
  color: var(--bordeaux);
  padding: 0.85rem 1.9rem;
  border: 1px solid var(--bordeaux);
  border-radius: 40px;
}
.btn-lm-outline:hover {
  background: var(--bordeaux);
  color: var(--ivoire);
  transform: translateY(-2px);
}

.btn-lm-light {
  background: transparent;
  color: var(--ivoire);
  padding: 0.85rem 1.9rem;
  border: 1px solid rgba(250, 247, 242, 0.5);
  border-radius: 40px;
}
.btn-lm-light:hover {
  background: rgba(250, 247, 242, 0.12);
  border-color: var(--ivoire);
  color: var(--ivoire);
}

.btn-lm-nude {
  background: var(--nude);
  color: var(--bordeaux);
  padding: 0.95rem 2.2rem;
  border: 1px solid var(--nude);
}
.btn-lm-nude:hover {
  background: var(--rose-poudre);
  border-color: var(--rose-poudre);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lm-outline-light {
  background: transparent;
  color: var(--ivoire);
  padding: 0.9rem 2rem;
  border: 1px solid rgba(250, 247, 242, 0.45);
}
.btn-lm-outline-light:hover {
  background: rgba(250, 247, 242, 0.1);
  border-color: var(--ivoire);
  color: var(--ivoire);
}

.btn-arrow::after {
  content: '→';
  font-size: 1rem;
  transition: transform 0.3s;
}
.btn-arrow:hover::after { transform: translateX(5px); }


/* ================================================================
   5. ANIMATIONS
================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity   0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible { opacity: 1; transform: none; border-radius: 40px; }

.rd1, .reveal-delay-1, .reveal-d1 { transition-delay: 0.1s; }
.rd2, .reveal-delay-2, .reveal-d2 { transition-delay: 0.2s; }
.rd3, .reveal-delay-3, .reveal-d3 { transition-delay: 0.3s; }
.rd4, .reveal-delay-4, .reveal-d4 { transition-delay: 0.4s; }


/* ================================================================
   6. HEADER (custom fixed, pas Navbar Bootstrap)
================================================================ */
.kad-header-menu-inner{
  max-width: 1300px;
}
.kt-cart-total{
  background: var(--bordeaux) !important;
}
#block-7 .btn-primary{
  background: var(--bordeaux) !important;
}
#block-7 .btn-primary:hover{
  background: var(--prune) !important;
  -webkit-box-shadow: inset 0-4px 0 0 rgba(0,0,0,0) !important;
  box-shadow: inset 0-4px 0 0 rgba(0,0,0,0) !important;
}
/* CIBLE UNIQUEMENT LE BOUTON COMPTE DU HEADER */
.menu-account-icon-kt > a.menu-account-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cache proprement le texte (déjà en display:none chez toi mais on sécurise) */
.menu-account-icon-kt .kt-extras-label {
    display: none !important;
}

/* Ajoute une icône utilisateur */
.menu-account-icon-kt > a.menu-account-btn::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    background-color: currentColor;

    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 12c2.7 0 5-2.3 5-5s-2.3-5-5-5-5 2.3-5 5 2.3 5 5 5zm0 2c-3.3 0-10 1.7-10 5v3h20v-3c0-3.3-6.7-5-10-5z'/></svg>") no-repeat center / contain;

    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 12c2.7 0 5-2.3 5-5s-2.3-5-5-5-5 2.3-5 5 2.3 5 5 5zm0 2c-3.3 0-10 1.7-10 5v3h20v-3c0-3.3-6.7-5-10-5z'/></svg>") no-repeat center / contain;
}
.menu-account-icon-kt > a.menu-account-btn:hover::before {
    transform: scale(1.1);
    opacity: 0.8;
    transition: 0.3s ease;
}
#block-7 a{
  color: #FAF7F2;
}
/* ================================================================
   8. HERO — ACCUEIL (index.html)
================================================================ */
.pg-home #hero {
  min-height: 100svh;
  padding-top: 80px;
  background: var(--ivoire);
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 5rem;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s both 0.2s;
}
.hero-label::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--prune);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.08;
  color: var(--texte);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s both 0.35s;
}
.hero-title em         { font-style: italic; color: var(--prune); font-weight: 400; }
.hero-title .script-accent { font-size: 1.15em; }

.hero-desc {
  font-weight: 300;
  line-height: 1.85;
  color: var(--texte-doux);
  margin-bottom: 2.5rem;
  animation: fadeUp 0.9s both 0.5s;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.9s both 0.65s;
}

/* Visuel droit accueil */
.hero-image         { position: relative; overflow: hidden; }
.hero-image-inner {
  width: 100%; height: 100%; min-height: 400px;
  background: linear-gradient(135deg, var(--nude) 0%, var(--rose-poudre) 50%, var(--prune) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-image-text {
  font-family: var(--font-script);
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.2);
  user-select: none;
}

/* Scroll indicator accueil */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s infinite 1.5s;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--texte-doux);
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--nude), transparent);
}

/* Badge hero */
.hero-badge,
.portrait-sticker,
.hero-badge-float {
  position: absolute;
  background: var(--ivoire);
  border: 1px solid var(--nude);
  padding: 1.2rem 1.6rem;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.hero-badge p,
.portrait-sticker p,
.hero-badge-float p {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--texte);
}
.hero-badge span,
.portrait-sticker span,
.hero-badge-float span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--prune);
}

/* Ruban vertical */
.hero-deco,
.portrait-badge-v,
.intro-ribbon {
  position: absolute;
  background: var(--bordeaux);
  color: var(--ivoire);
  padding: 1rem 0.8rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* Watermark */
.wm,
.portrait-watermark,
.hero-image-text {
  font-family: var(--font-script);
  color: rgba(255, 255, 255, 0.13);
  user-select: none;
  line-height: 1;
}
.wm              { font-size: 7rem; }

/* Conteneur visuel hero */
.hero-img-wrap,
.hero-visual-main,
.portrait-main,
.intro-photo,
.surmesure-photo,
.valeurs-photo {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-wrap   { aspect-ratio: 4/3; }
.portrait-main   { aspect-ratio: 3/4; }
.intro-photo     { aspect-ratio: 3/4; }
.surmesure-photo { aspect-ratio: 3/4; }
.valeurs-photo   { aspect-ratio: 4/5; }


/* ================================================================
   9. HERO — PAGES INTÉRIEURES
================================================================ */
.pg-contact #hero,
.pg-mentions #hero,
.pg-cgv #hero {
  background: var(--ivoire);
  padding: 3rem 0 0;
  overflow: hidden;
}

#page-hero {
  background: var(--ivoire);
  padding: 3rem 0 0;
  overflow: hidden;
}

/* Eyebrow */
.hero-eyebrow,
.page-hero-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s both 0.1s;
}
.hero-eyebrow::before,
.page-hero-label::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--prune);
  flex-shrink: 0;
}

/* Grand titre H1 pages intérieures */
.hero-h1,
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--texte);
  animation: fadeUp 0.9s both 0.25s;
}
.hero-h1 em,
.page-hero-title em { font-style: italic; color: var(--prune); }
.hero-h1 .script-line,
.hero-h1 .script-drop { font-family: var(--font-script); font-size: 1.08em; color: var(--rose-fraise); display: block; line-height: 1.05; }

/* Sous-titre */
.hero-sub,
.page-hero-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: var(--texte-doux);
  line-height: 1.75;
  margin-top: 1.8rem;
  animation: fadeUp 0.9s both 0.4s;
  font-size: 2rem;
}

/* Hero text wrapper */
.hero-text { animation: fadeUp 0.8s both 0.1s; padding: 5rem; }

/* Hero img bg (contact) */
.hero-img-bg {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, var(--nude) 0%, var(--rose-poudre) 45%, var(--rose-fraise) 100%);
  display: flex; align-items: center; justify-content: center;
}
.hero-img-accent {
  position: absolute; bottom: 0; right: 0;
  width: 40%; height: 35%;
  background: var(--bordeaux); opacity: 0.18;
  pointer-events: none;
}

/* Hero quick links (contact) */
.hero-quick-links {
  display: flex; gap: 1.2rem; flex-wrap: wrap; margin-top: 2.8rem;
  animation: fadeUp 0.9s both 0.55s;
}
.quick-link {
  display: flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-body); font-size: 1.2rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--texte-doux); padding-bottom: 3px;
  border-bottom: 1px solid var(--nude);
  transition: color 0.25s, border-color 0.25s;
  text-decoration: none;
}
.quick-link:hover { color: var(--prune); border-color: var(--prune); }
.quick-link-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--rose-poudre); flex-shrink: 0; }

/* Hero créatrice */
.page-hero-content { padding: 5rem; }
.page-hero-title .script-line { font-size: 1.1em; }
.page-hero-scroll {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: fadeUp 0.9s both 0.6s;
}
.page-hero-scroll-line { width: 1px; height: 100px; background: linear-gradient(to bottom, var(--prune), transparent); }
.page-hero-scroll span { letter-spacing: 0.22em; text-transform: uppercase; color: var(--texte-doux); writing-mode: vertical-rl; }

.page-hero-portrait  { position: relative; animation: fadeUp 1s both 0.4s; }
.portrait-main { background: linear-gradient(160deg, var(--nude) 0%, var(--rose-poudre) 50%, var(--rose-fraise) 90%); }
.portrait-watermark { font-size: 8rem; }
.portrait-frame {
  position: absolute;
  bottom: -1.2rem; left: -1.2rem;
  width: 70%; height: 50%;
  border: 1px solid var(--nude);
  pointer-events: none; z-index: 0;
}
.portrait-badge-v { top: 2rem; right: -1px; }
.portrait-sticker { bottom: 2.5rem; left: -2.5rem; }
.page-hero-band {
  height: 6px;
  background: linear-gradient(to right, var(--nude), var(--rose-poudre), var(--rose-fraise), var(--prune), var(--bordeaux));
}

/* Hero split (créations) */
.hero-split { max-width: 1280px; margin: 0 auto; padding: 2.5rem 2rem 0; }
.hero-counts {
  display: flex; gap: 2.5rem; margin-top: 3rem; padding-top: 2.5rem;
  border-top: 1px solid var(--nude); animation: fadeUp 0.9s both 0.6s;
}
.hero-count-item { text-align: center; }
.hero-count-num { font-family: var(--font-display); font-size: 2rem; font-weight: 300; color: var(--prune); line-height: 1; display: block; }
.hero-count-lbl { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--texte-doux); margin-top: 0.3rem; display: block; }
.hero-deco-sq { position: absolute; top: 1.5rem; left: 1.5rem; width: calc(100% - 3rem); height: calc(100% - 3rem); border: 1px solid var(--nude); pointer-events: none; z-index: 0; }
.hero-visual-band { position: absolute; bottom: 0; left: 0; right: 0; height: 5px; background: linear-gradient(to right, var(--nude), var(--rose-poudre), var(--rose-fraise), var(--prune)); z-index: 2; }

/* Hero meta (légal) */
.hero-meta { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--nude); }
.hero-meta-row { display: flex; align-items: center; gap: 0.7rem; font-size: 0.78rem; font-weight: 300; color: var(--texte-doux); }
.hero-meta-row .dot { color: var(--rose-poudre); font-size: 0.6rem; }
.hero-meta-row strong { color: var(--texte); font-weight: 500; }

/* Sommaire hero (légal) */
.hero-toc {
  background: var(--blanc); border: 1px solid var(--nude);
  padding: 2.5rem; position: relative;
  animation: fadeUp 0.9s both 0.3s;
}
.hero-toc::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(to right, var(--nude), var(--rose-poudre), var(--prune)); }
.hero-toc h2 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--texte); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.6rem; }
.hero-toc h2::after { content: ''; flex: 1; height: 1px; background: var(--nude); }
.toc-list  { display: flex; flex-direction: column; }
.toc-item  { display: flex; align-items: center; gap: 0.8rem; padding: 0.62rem 0; border-bottom: 1px solid var(--gris-clair); text-decoration: none; transition: var(--transition); }
.toc-item:last-child  { border-bottom: none; }
.toc-item:hover       { padding-left: 0.4rem; }
.toc-item:hover .toc-num,
.toc-item:hover .toc-text { color: var(--prune); }
.toc-num   { font-family: var(--font-display); font-size: 0.82rem; font-weight: 400; color: var(--nude); min-width: 22px; line-height: 1; transition: color 0.25s; }
.toc-text  { font-family: var(--font-body); font-size: 0.76rem; font-weight: 400; color: var(--texte-doux); letter-spacing: 0.04em; transition: color 0.25s; flex: 1; }
.toc-arrow { color: var(--nude); font-size: 0.75rem; transition: transform 0.25s, color 0.25s; }
.toc-item:hover .toc-arrow { transform: translateX(3px); color: var(--prune); }


/* ================================================================
   10. SECTION ATELIER (index)
================================================================ */
#atelier {
  padding: 8rem 0;
  background: var(--gris-clair);
  position: relative;
  overflow: hidden;
}
#atelier::before {
  content: 'Atelier';
  position: absolute;
  top: 2rem; right: 2rem;
  font-family: var(--font-script);
  font-size: 12rem;
  color: rgba(231, 207, 175, 0.18);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}

.atelier-visual { position: relative; }
.atelier-photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--nude) 0%, var(--rose-poudre) 60%, var(--rose-fraise) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
}
.atelier-photo .placeholder-icon { font-size: 4rem; color: rgba(255, 255, 255, 0.35); }
.atelier-photo::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 40%; height: 40%;
  background: var(--bordeaux);
  opacity: 0.12;
}
.atelier-frame {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: calc(100% - 3rem);
  height: calc(100% - 3rem);
  border: 1px solid var(--nude);
  pointer-events: none;
  border-radius: 40px;
}
.atelier-signature {
  position: absolute;
  top: 1.5rem; left: -2rem;
  background: var(--bordeaux);
  color: var(--ivoire);
  padding: 1rem 1.5rem;
  writing-mode: vertical-rl;
  font-family: var(--font-body);
  font-size: 1.3rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 40px;
}

.atelier-content .section-title { margin: 1rem 0 2rem; }
.atelier-text {
  font-weight: 300;
  line-height: 1.95;
  color: var(--texte-doux);
  margin-bottom: 1.5rem;
}
.atelier-text strong { color: var(--texte); font-weight: 500; }

.atelier-quote {
  border-left: 2px solid var(--rose-poudre);
  padding-left: 1.5rem;
  margin: 2rem 0;
}
.atelier-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: var(--texte);
  line-height: 1.6;
}

.atelier-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--nude);
  margin-bottom: 20px
}
.stat-item  { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--prune);
  display: block;
}
.stat-label {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--texte-doux);
  margin-top: 0.3rem;
}


/* ================================================================
   11. CARDS CRÉATIONS (accueil + page créations)
================================================================ */
.creation-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 30px;
  border-radius: 40px;
}

.card-visual {
  width: 100%;
  height: 100%;
  min-height: 260px;
  position: relative;
  overflow: hidden;
}

.card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.creation-card:hover .card-bg { transform: scale(1.06); }

.card-bg-1, .pb1  { background: linear-gradient(145deg, var(--nude) 0%, var(--rose-poudre) 100%); }
.card-bg-2, .pb2  { background: linear-gradient(145deg, var(--rose-poudre) 0%, var(--rose-fraise) 100%); }
.card-bg-3, .pb3  { background: linear-gradient(145deg, var(--prune) 0%, var(--bordeaux) 100%); }
.card-bg-4, .pb4  { background: linear-gradient(145deg, var(--gris-clair) 0%, var(--nude) 100%); }
.card-bg-5, .pb5  { background: linear-gradient(145deg, var(--rose-fraise) 0%, var(--prune) 100%); }
.pb6  { background: linear-gradient(145deg, var(--nude) 0%, var(--rose-fraise) 100%); }
.pb7  { background: linear-gradient(145deg, var(--bordeaux) 0%, var(--prune) 100%); }
.pb8  { background: linear-gradient(145deg, var(--rose-poudre) 0%, var(--nude) 100%); }
.pb9  { background: linear-gradient(145deg, var(--prune) 0%, var(--rose-fraise) 100%); }
.pb10 { background: linear-gradient(145deg, var(--gris-clair) 0%, var(--rose-poudre) 100%); }
.pb11 { background: linear-gradient(145deg, var(--nude) 0%, var(--bordeaux) 100%); }
.pb12 { background: linear-gradient(145deg, var(--rose-fraise) 0%, var(--nude) 100%); }

.card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.25);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(46, 42, 42, 0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.creation-card:hover .card-overlay { opacity: 1; }

.card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  transform: translateY(8px);
  transition: transform 0.4s;
  background-color: rgba(249, 246, 240, 0.75);
}
.creation-card:hover .card-info { transform: translateY(0); }

.card-category {
  font-size: 1.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #5E0027;
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 0rem !important;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ivoire);
  line-height: 1.2;
}
.card-tag {
  position: absolute;
  top: 2rem; right: 2rem;
  background: var(--ivoire);
  color: var(--bordeaux);
  font-size: 1.3rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  font-family: var(--font-body);
}

.creations-header { text-align: center; margin-bottom: 4rem; }
.creations-header .section-title { margin: 1rem 0 1.2rem; }
.creations-header p { font-weight: 300; color: var(--texte-doux); margin: 0 auto; line-height: 1.8; }
.creations-footer   { text-align: center; margin-top: 3.5rem; }

/* Accueil: première carte plus grande */
.pg-home .creation-card-featured .card-visual { min-height: 100%; }


/* ================================================================
   12. SECTION VALEURS (fond bordeaux)
================================================================ */
.section-bordeaux {
  background: linear-gradient(135deg, var(--rose-poudre) 0%, var(--prune) 100%);
  position: relative;
  overflow: hidden;
}
.section-bordeaux::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(231, 207, 175, 0.1);
  pointer-events: none;
}
.section-bordeaux::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  border: 1px solid rgba(231, 207, 175, 0.08);
  pointer-events: none;
}

#valeurs {
  padding: 8rem 0;
}

.valeurs-header { text-align: center; margin-bottom: 4.5rem; }
.valeurs-header .label        { color: var(--nude); }
.valeurs-header .section-title { color: var(--ivoire); margin: 1rem 0; }
.valeurs-header .section-title em { color: var(--bordeaux); }
.valeurs-header p { color: rgba(250, 247, 242, 0.7); font-weight: 300; line-height: 1.8; }

.valeur-card {
  padding: 2.5rem 1.8rem;
  border: 1px solid rgba(231, 207, 175, 0.15);
  position: relative;
  transition: var(--transition);
  height: 100%;
  background: var(--bordeaux);
}
.valeur-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--rose-poudre);
  transition: width 0.5s;
}
.valeur-card:hover {
  background: var(--prune);
  transform: translateY(-4px);
  border: 1px solid rgba(231, 207, 175, 0.15);
}
.valeur-icon { width: 48px; height: 48px; margin-bottom: 1.5rem; color: var(--rose-poudre); }
.valeur-icon svg { width: 100%; height: 100%; }
.valeur-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ivoire);
  margin-bottom: 0.8rem;
}
.valeur-text { font-size: 1.5rem; font-weight: 300; color: rgba(250, 247, 242, 0.65); line-height: 1.85; }


/* ================================================================
   13. SECTION SUR-MESURE ACCUEIL
================================================================ */
#sur-mesure {
  padding: 8rem 0;
  background: var(--gris-clair);
  position: relative;
  overflow: hidden;
}
#sur-mesure::after {
  content: 'Sur-mesure';
  position: absolute;
  bottom: -2rem; left: -1rem;
  font-family: var(--font-script);
  font-size: 10rem;
  color: rgba(231, 207, 175, 0.15);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}

.surmesure-content .section-title { margin: 1rem 0 1.5rem; }
.surmesure-content > p {
  font-weight: 300;
  font-size: 0.97rem;
  line-height: 1.95;
  color: var(--texte-doux);
  margin-bottom: 3rem;
}

/* Étapes */
.etapes { display: flex; flex-direction: column; }
.etape {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--nude);
}
.etape:last-child { border-bottom: none; }
.etape-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--nude);
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
}
.etape-content h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--texte);
  margin-bottom: 0.35rem;
}
.etape-content p { font-size: 0.85rem; font-weight: 300; color: var(--texte-doux); line-height: 1.7; }

.surmesure-ctas { display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; }

.surmesure-photo {
  background: linear-gradient(160deg, var(--prune) 0%, var(--bordeaux) 100%);
}
.surmesure-photo .sm-text { font-family: var(--font-script); font-size: 5rem; color: rgba(255, 255, 255, 0.15); }

.surmesure-accent {
  position: absolute;
  top: 2rem; right: -1rem;
  background: var(--nude);
  padding: 1.2rem 1.8rem;
  text-align: center;
}
.surmesure-accent .big {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--bordeaux);
  display: block;
}
.surmesure-accent .small { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--prune); }


/* ================================================================
   14. AVIS / TÉMOIGNAGES
================================================================ */
#avis { padding: 8rem 0; background: var(--ivoire); }
.avis-header { text-align: center; margin-bottom: 4rem; }
.avis-header .section-title { margin: 1rem 0; }

.avis-card,
.temo-card {
  background: var(--blanc);
  padding: 2.5rem;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  position: relative;
  height: 100%;
}
.avis-card::before,
.temo-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--nude);
  line-height: 1;
}
.avis-card:hover,
.temo-card:hover {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--rose-poudre);
  transform: translateY(-4px);
}

.stars,
.stars-mini { display: flex; gap: 3px; margin-bottom: 1.2rem; }
.star,
.stars-mini span { color: var(--prune); font-size: 1.85rem; }

.avis-text,
.temo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--texte);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.avis-author,
.temo-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--gris-clair);
}

.author-avatar,
.temo-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nude), var(--rose-poudre));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ivoire);
  flex-shrink: 0;
}
.author-info strong { display: block; font-size: 1.82rem; font-weight: 500; color: var(--texte); }
.author-info span   { font-size: 1.3rem; color: var(--texte-doux); }

/* Avatars colorés */
.av1 { background: linear-gradient(135deg, var(--rose-fraise), var(--prune)); }
.av2 { background: linear-gradient(135deg, var(--nude), var(--rose-poudre)); }
.av3 { background: linear-gradient(135deg, var(--prune), var(--bordeaux)); }


/* ================================================================
   15. CTA FINAL
================================================================ */
#cta-final,
.contact-cta,
#contact-cta {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--rose-poudre) 0%, var(--prune) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

#cta-final::before,
.contact-cta::before,
#contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='38' stroke='%23ffffff' stroke-width='0.5' stroke-opacity='0.08' fill='none'/%3E%3C/svg%3E") center / 80px;
}

.cta-inner,
.cta-final-content,
.cta-wrap,
.contact-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-script,
.cta-final-script,
.contact-cta-script {
  font-family: var(--font-script);
  font-size: 6rem;
  color: rgba(250, 247, 242, 0.3);
  display: block;
  margin-bottom: 2rem;
}

.cta-title,
.cta-final-title,
.contact-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--ivoire);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.cta-text,
.cta-final-text,
.contact-cta-text {
  font-weight: 300;
  color: rgba(250, 247, 242, 0.8);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.cta-btns,
.cta-final-btns,
.contact-cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}


/* ================================================================
   16. FOOTER
================================================================ */
.footer-brand .logo-text       { color: var(--ivoire); }
.footer-brand .logo-text span  { color: var(--rose-poudre); }
.footer-brand p {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.85;
  margin: 1.2rem 0 1.8rem;
  color: rgba(250, 247, 242, 0.5);
}

.social-links { display: flex; gap: 1rem; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(231, 207, 175, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nude);
  font-size: 0.85rem;
  font-family: var(--font-display);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--prune);
  border-color: var(--prune);
  color: var(--ivoire);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 1.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--nude);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.footer-col ul  { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a   { font-size: 1.5rem; font-weight: 300; color: rgba(250, 247, 242, 0.5); transition: color 0.25s; text-decoration: none; }
.footer-col a:hover { color: var(--rose-poudre); }

.footer-contact p,
.footer-contact a {
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(250, 247, 242, 0.5);
  line-height: 2;
  display: block;
  transition: color 0.25s;
}
.footer-contact a:hover { color: var(--rose-poudre); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(231, 207, 175, 0.1);
}
.footer-bottom p { font-size: 0.75rem; color: rgba(250, 247, 242, 0.3); }
.footer-bottom-links { display: flex; gap: 2rem; }
.footer-bottom-links a {
  font-size: 0.72rem;
  color: rgba(250, 247, 242, 0.3);
  transition: color 0.25s;
}
.footer-bottom-links a:hover { color: var(--rose-poudre); }


/* ================================================================
   17. PAGE LA-CREATRICE
================================================================ */

/* Intro narrative */
#intro {
  padding: 7rem 0;
  background: var(--gris-clair);
  position: relative;
  overflow: hidden;
}
#intro::before {
  content: 'Passion';
  position: absolute;
  top: 2rem; right: 2rem;
  font-family: var(--font-script);
  font-size: 14rem;
  color: rgba(231, 207, 175, 0.18);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}

.intro-aside   { display: flex; flex-direction: column; gap: 2.5rem; }
.intro-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--blanc);
  border: 1px solid var(--nude);
  padding: 0.7rem 1.2rem;
}
.intro-pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rose-fraise); flex-shrink: 0; }
.intro-pill p   { font-size: 1.3rem; letter-spacing: 0.12em; color: var(--texte-doux); margin: 0; }

.intro-aside-img {
  width: 100%;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--prune) 0%, var(--bordeaux) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
}
.intro-aside-img span { font-family: var(--font-script); font-size: 5rem; color: rgba(255, 255, 255, 0.15); }
.intro-text-col .section-title { margin: 1rem 0 2.5rem; }
.intro-big-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--texte);
  border-left: 3px solid var(--rose-poudre);
  padding-left: 2rem;
  margin-bottom: 2.5rem;
}
.intro-big-quote em { color: var(--prune); font-style: normal; font-weight: 500; }
.intro-body { font-weight: 300; line-height: 1.95; color: var(--texte-doux); margin-bottom: 1.4rem; }
.intro-body strong { color: var(--texte); font-weight: 500; }
/* Timeline */
#parcours {
  padding: 7rem 0;
  background: var(--ivoire);
  position: relative;
  overflow: hidden;
}
#parcours::after {
  content: 'Histoire';
  position: absolute;
  bottom: 2rem; left: 2rem;
  font-family: var(--font-script);
  font-size: 12rem;
  color: rgba(231, 207, 175, 0.15);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}
.parcours-header { text-align: center; margin-bottom: 5rem; }
.parcours-header .section-title { margin: 1rem 0; }

.timeline { position: relative; display: flex; flex-direction: column; max-width: 860px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--nude) 10%, var(--nude) 90%, transparent);
  transform: translateX(-50%);
}

.timeline-item { display: grid; grid-template-columns: 1fr 60px 1fr; align-items: start; padding: 2.5rem 0; }
.tl-left  { text-align: right; padding-right: 2.5rem; padding-top: 0.3rem; }
.tl-right { text-align: left;  padding-left: 2.5rem;  padding-top: 0.3rem; }
.timeline-item:nth-child(odd)  .tl-right { opacity: 0; pointer-events: none; }
.timeline-item:nth-child(even) .tl-left  { opacity: 0; pointer-events: none; }
.timeline-item:nth-child(even) .tl-right { opacity: 1; }

.tl-dot { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; position: relative; z-index: 2; }
.tl-dot-ring {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid var(--prune);
  background: var(--ivoire);
  margin-top: 0.4rem;
  transition: background 0.3s;
}
.timeline-item:hover .tl-dot-ring { background: var(--prune); }
.tl-year { font-family: var(--font-display); font-weight: 600; color: var(--prune); letter-spacing: 0.1em; margin-top: 0.4rem; }
.tl-title { font-family: var(--font-display); font-weight: 500; color: var(--texte); margin-bottom: 0.5rem; }
.tl-text  { font-weight: 300; line-height: 1.85; color: var(--texte-doux); }
.tl-tag   { display: inline-block; margin-top: 0.7rem; background: var(--gris-clair); color: var(--prune); letter-spacing: 0.18em; text-transform: uppercase; padding: 0.25rem 0.65rem; }

/* Timeline mobile/tablette : ligne à gauche, contenu pleine largeur à droite */
@media (max-width: 767.98px) {
  .timeline { max-width: 100%; padding-left: 0; }
  .timeline::before {
  display: none;
  }
  .timeline-item {
    grid-template-columns: 44px 1fr;
    gap: 1.2rem;
    padding: 1.5rem 0;
  }
  .timeline-item .tl-left,
  .timeline-item .tl-right {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    padding: 0;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  /* On masque le tl-left vide pour les items pairs et tl-right vide pour les items impairs */
  .timeline-item:nth-child(odd) .tl-left:empty,
  .timeline-item:nth-child(even) .tl-right:empty { display: none; }
  /* Pour les items pairs, le contenu est dans tl-right donc on le laisse */
  /* Pour les items impairs, le contenu est dans tl-left, on doit le positionner à droite */
  .timeline-item .tl-dot {
    grid-column: 1;
    grid-row: 1;
    align-items: flex-start;
    padding-top: 0.3rem;
  }
  .tl-dot-ring { margin-top: 0; background: var(--prune); }
  .tl-year {
    font-size: 1.75rem;
    margin-top: 0.5rem;
  }
  .tl-title { font-size: 2.1rem; }
  .tl-text { font-size: 1.4rem; }
}
/* Savoir-faire */
#savoir-faire {
  padding: 7rem 0;
  background: linear-gradient(135deg, var(--rose-poudre) 0%, var(--prune) 100%);
  position: relative;
  overflow: hidden;
}
.pg-creatrice #savoir-faire::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  border: 1px solid rgba(231, 207, 175, 0.1); pointer-events: none;
}
.pg-creatrice #savoir-faire::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 350px; height: 350px; border-radius: 50%;
  border: 1px solid rgba(231, 207, 175, 0.08); pointer-events: none;
}

.savoir-header { text-align: center; margin-bottom: 4.5rem; position: relative; z-index: 1; }
.savoir-header .label          { color: var(--nude); }
.savoir-header .section-title  { color: var(--ivoire); margin: 1rem 0; }
.savoir-header .section-title em { color: var(--bordeaux); }
.savoir-header p { color: rgba(250, 247, 242, 0.65); font-weight: 300; line-height: 1.8; margin: 0 auto; }

.savoir-card {
  background: var(--bordeaux);
  border: 1px solid rgba(231, 207, 175, 0.1);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.savoir-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(to right, var(--nude), var(--rose-poudre));
  transition: width 0.5s;
}
.savoir-card:hover::before { width: 100%; }
.savoir-card:hover { background: rgba(255, 255, 255, 0.07); transform: translateY(-4px);
border: 1px solid rgba(231, 207, 175, 0.1);
background: var(--prune);
}

.savoir-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(231, 207, 175, 0.15);
  line-height: 1;
  position: absolute;
  top: 1.2rem; right: 1.5rem;
}
.savoir-icon  { width: 44px; height: 44px; margin-bottom: 1.5rem; color: var(--rose-poudre); position: relative; z-index: 1; }
.savoir-icon svg { width: 100%; height: 100%; }
.savoir-title { font-family: var(--font-display); font-size: 2.2rem; font-weight: 400; font-style: italic; color: var(--ivoire); margin-bottom: 0.8rem; position: relative; z-index: 1; }
.savoir-text  { font-size: 1.5rem; font-weight: 300; color: rgba(250, 247, 242, 0.6); line-height: 1.85; position: relative; z-index: 1; }

.matieres-section { margin-top: 4.5rem; text-align: center; position: relative; z-index: 1; }
.matieres-section h3 { font-family: var(--font-display); font-size: 2.1rem; font-style: italic; color: rgba(250, 247, 242, 0.5); margin-bottom: 1.5rem; }
.matieres-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; }
.matiere-tag {
  border: 1px solid rgba(231, 207, 175, 0.25);
  padding: 0.5rem 1.2rem;
  font-family: var(--font-body);
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  transition: var(--transition);
}
.matiere-tag:hover { border-color: var(--bordeaux); color: var(--rose-poudre); background: var(--bordeaux); }

/* Galerie */
#galerie { padding: 7rem 0; background: var(--gris-clair); }
.galerie-header { text-align: center; margin-bottom: 3.5rem; }
.galerie-header .section-title { margin: 1rem 0; }

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.galerie-cell { position: relative; overflow: hidden; border-radius: 40px;}
.galerie-cell-inner {
  width: 100%; height: 100%; min-height: 220px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.galerie-cell:hover .galerie-cell-inner { transform: scale(1.04); }

.g1 { grid-column: 1 / 6;  grid-row: 1; }
.g2 { grid-column: 6 / 9;  grid-row: 1; }
.g3 { grid-column: 9 / 13; grid-row: 1; }
.g4 { grid-column: 1 / 5;  grid-row: 2; }
.g5 { grid-column: 5 / 9;  grid-row: 2; }
.g6 { grid-column: 9 / 13; grid-row: 2; }
.g1 .galerie-cell-inner,
.g2 .galerie-cell-inner,
.g3 .galerie-cell-inner { min-height: 340px; }

.gb1 { background: linear-gradient(145deg, var(--nude), var(--rose-poudre)); }
.gb2 { background: linear-gradient(145deg, var(--prune), var(--bordeaux)); }
.gb3 { background: linear-gradient(145deg, var(--gris-clair), var(--nude)); }
.gb4 { background: linear-gradient(145deg, var(--rose-poudre), var(--rose-fraise)); }
.gb5 { background: linear-gradient(145deg, var(--bordeaux), var(--prune)); }
.gb6 { background: linear-gradient(145deg, var(--nude), var(--rose-fraise)); }

.galerie-icon { font-size: 3rem; color: rgba(255, 255, 255, 0.22); pointer-events: none; }
.galerie-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem 1.2rem;
  background: linear-gradient(to top, rgba(46, 42, 42, 0.55) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.galerie-cell:hover .galerie-caption { opacity: 1; }
.galerie-caption p { font-family: var(--font-display); font-size: 1.90rem; font-style: italic; color: var(--ivoire); font-weight: 300; }
.galerie-note { text-align: center; margin-top: 2.5rem; font-size: 0.78rem; color: var(--texte-doux); font-style: italic; font-family: var(--font-display); }

/* Valeurs créatrice */
.valeurs-content .section-title { margin: 1rem 0 2.5rem; }

.valeur-list     { display: flex; flex-direction: column; }
.valeur-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--gris-clair);
  transition: var(--transition);
}
.valeur-item:last-child   { border-bottom: none; }
.valeur-item:hover        { padding-left: 0.5rem; }

.valeur-ico {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border: 1px solid var(--nude);
  display: flex; align-items: center; justify-content: center;
  color: var(--prune);
  transition: var(--transition);
}
.valeur-item:hover .valeur-ico { background: var(--prune); color: var(--ivoire); border-color: var(--prune); }
.valeur-ico svg { width: 20px; height: 20px; }
.valeur-body h4 { font-family: var(--font-display); font-size: 2.1rem; font-weight: 500; color: var(--texte); margin-bottom: 0.3rem; }
.valeur-body p  { font-size: 1.6rem; font-weight: 300; line-height: 1.75; color: var(--texte-doux); }

.big-stat-box {
  background: var(--bordeaux);
  color: var(--ivoire);
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 40px;
}
.big-stat-box::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; border: 1px solid rgba(231, 207, 175, 0.1); }
.big-stat-num  { font-family: var(--font-display); font-size: 5rem; font-weight: 300; color: var(--nude); line-height: 1; display: block; }
.big-stat-label { font-size: 1.60rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(250, 247, 242, 0.55); margin-top: 0.5rem; }
.big-stat-sub  { margin-top: 1.5rem; font-family: var(--font-display); font-size: 1.6rem; font-style: italic; font-weight: 300; color: rgba(250, 247, 242, 0.7); line-height: 1.6; }

.mini-quote-box {
  background: var(--gris-clair);
  padding: 2rem 2.2rem;
  border-left: 3px solid var(--rose-poudre);
}
.mini-quote-box p    { font-family: var(--font-display); font-size: 1.6rem; font-style: italic; font-weight: 300; color: var(--texte); line-height: 1.65; margin-bottom: 0.8rem; }
.mini-quote-box span { font-size: 1rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--prune); font-weight: 500; }


/* ================================================================
   18-21. Les sections restantes sont conservées telles quelles
   (créations page, sur-mesure, contact, légales)
   car elles utilisent des composants Bootstrap pour la grille
   et gardent leur CSS custom pour le visuel
================================================================ */

/* Sections padding helper */
.section-pad { padding: 8rem 0; }
.section-pad-sm { padding: 5rem 0; }
.section-pad-md { padding: 7rem 0; }

/* Background helpers */
.bg-ivoire    { background: var(--ivoire); }
.bg-gris      { background: var(--gris-clair); }
.bg-bordeaux  { background: var(--bordeaux); }
.bg-blanc     { background: var(--blanc); }

/* Sur-mesure hero overrides */
.pg-surmesure #hero {
  background: var(--bordeaux);
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}
.pg-surmesure #hero::before {
  content: '';
  position: absolute; top: -180px; right: 40%;
  width: 700px; height: 700px; border-radius: 50%;
  border: 1px solid rgba(231,207,175,0.07); pointer-events: none;
}
.pg-surmesure #hero::after {
  content: '';
  position: absolute; bottom: -120px; left: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  border: 1px solid rgba(231,207,175,0.05); pointer-events: none;
}
.pg-surmesure .hero-eyebrow::before { background: var(--nude); }
.pg-surmesure .hero-h1 { color: var(--ivoire); }
.pg-surmesure .hero-h1 em { color: var(--rose-poudre); }
.pg-surmesure .hero-h1 .script-drop { color: var(--nude); opacity: 0.7; }
.pg-surmesure .hero-sub { color: rgba(250,247,242,0.65); }
.pg-surmesure .hero-band {
  position: absolute; bottom: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(to right, var(--nude), var(--rose-poudre), var(--rose-fraise), var(--prune));
  z-index: 5;
}

.hero-left { position: relative; z-index: 2; }
.hero-right { position: relative; overflow: hidden; }

.hero-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100%; min-height: 600px; gap: 3px;
}
.mosaic-cell { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.mosaic-cell:nth-child(1) { grid-row: span 2; }
.mc-bg { position: absolute; inset: 0; transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.mosaic-cell:hover .mc-bg { transform: scale(1.06); }
.mc1 { background: linear-gradient(145deg, var(--prune) 0%, #7a1a3a 100%); }
.mc2 { background: linear-gradient(145deg, var(--nude) 0%, var(--rose-poudre) 100%); }
.mc3 { background: linear-gradient(145deg, var(--rose-fraise) 0%, var(--prune) 100%); }
.mc4 { background: linear-gradient(145deg, var(--rose-poudre) 0%, var(--nude) 100%); }
.mc-icon  { font-size: 3rem; color: rgba(255,255,255,0.15); z-index: 1; pointer-events: none; }
.mc-label { position: absolute; bottom: 1rem; left: 1rem; right: 1rem; z-index: 2; }
.mc-label p { font-family: var(--font-display); font-size: 0.95rem; font-style: italic; font-weight: 300; color: rgba(250,247,242,0.75); line-height: 1.3; }

/* Trust pills */
.trust-pills { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 3.5rem; animation: fadeUp 0.9s both 0.75s; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(231, 207, 175, 0.18);
  padding: 0.55rem 1rem; width: fit-content;
}
.tp-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--rose-poudre); flex-shrink: 0; }
.trust-pill span { font-size: 0.72rem; letter-spacing: 0.1em; color: rgba(250, 247, 242, 0.6); }

/* Sur-mesure intro */
.pg-surmesure #intro {
  padding: 8rem 0;
  background: var(--ivoire);
  position: relative; overflow: hidden;
}
.pg-surmesure #intro::after {
  content: 'Unique';
  position: absolute; top: -1rem; right: -1rem;
  font-family: var(--font-script); font-size: 14rem;
  color: rgba(231,207,175,0.14); pointer-events: none;
  white-space: nowrap; line-height: 1;
}
.intro-layout { /* handled by Bootstrap row/col */ }
.intro-badge-num {
  position: absolute; top: -1rem; right: -1rem;
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--bordeaux);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 2;
}
.intro-badge-num strong { font-family: var(--font-display); font-size: 1.5rem; font-weight: 300; color: var(--nude); line-height: 1; }
.intro-badge-num small { font-size: 0.52rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(250,247,242,0.5); }
.pg-surmesure .intro-ribbon { background: var(--nude); color: var(--bordeaux); font-weight: 500; }
.intro-content .section-title { margin: 1rem 0 2rem; }
.intro-lead {
  font-family: var(--font-display); font-size: 1.25rem; font-style: italic;
  font-weight: 300; color: var(--texte); line-height: 1.65;
  border-left: 3px solid var(--rose-poudre); padding-left: 1.5rem;
  margin-bottom: 2rem;
}
.intro-lead em { color: var(--prune); font-style: normal; font-weight: 500; }
.intro-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.intro-tag {
  border: 1px solid var(--nude); padding: 0.35rem 0.9rem;
  font-family: var(--font-body); font-size: 0.68rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--texte-doux);
  transition: var(--transition);
}
.intro-tag:hover { border-color: var(--prune); color: var(--prune); background: rgba(169,54,99,0.04); }

/* Formulaire sur-mesure */
#contact-form {
  padding: 8rem 0;
  background: var(--gris-clair);
  position: relative; overflow: hidden;
}
#contact-form::before {
  content: 'Écrire';
  position: absolute; top: -1rem; left: -1rem;
  font-family: var(--font-script); font-size: 14rem;
  color: rgba(231,207,175,0.14); pointer-events: none;
  white-space: nowrap; line-height: 1;
}
.form-intro .section-title { margin: 1rem 0 1.5rem; }
.form-intro p { font-size: 0.95rem; font-weight: 300; color: var(--texte-doux); line-height: 1.9; margin-bottom: 2.5rem; }
.form-contact-alt { display: flex; flex-direction: column; gap: 0.7rem; }
.fca-item {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.9rem 1.2rem; background: var(--blanc); border: 1px solid var(--nude);
  transition: var(--transition);
}
.fca-item:hover { border-color: var(--prune); transform: translateX(4px); }
.fca-icon { color: var(--prune); flex-shrink: 0; }
.fca-icon svg { width: 18px; height: 18px; stroke: var(--prune); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.fca-text { font-size: 0.82rem; font-weight: 300; color: var(--texte-doux); }
.fca-text strong { display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--texte); font-weight: 500; margin-bottom: 0.15rem; }
.form-card {
  background: var(--blanc); padding: 3.5rem;
  border: 1px solid var(--nude); position: relative;
}
.form-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  height: 3px; width: 100%;
  background: linear-gradient(to right, var(--nude), var(--rose-poudre), var(--prune));
}
.form-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--texte); margin-bottom: 0.5rem; }
.form-card p.form-sub { font-size: 0.82rem; font-weight: 300; color: var(--texte-doux); margin-bottom: 2.5rem; line-height: 1.6; }

/* Form elements */
.wpforms-container .wpforms-form .wpforms-field-label {
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  margin-bottom: 2px;
}
.req { color: var(--prune); margin-left: 1px; }
div.wpforms-container-full input[type="text"],
.form-lm .form-select, div.wpforms-container-full input[type="email"], div.wpforms-container-full input[type="text"], div.wpforms-container-full .wpforms-form textarea.wpforms-field-medium {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--texte);
  background: var(--blanc);
  border: 1px solid rgba(231, 207, 175, 0.7);
  padding: 0.9rem 1.1rem;
  border-radius: 0;
  transition: border-color 0.25s, box-shadow 0.25s;
  border-radius: 20px;
}
div.wpforms-container-full input[type="text"]:focus:invalid,
.form-lm .form-select:focus, div.wpforms-container-full input[type="email"]:focus:invalid, div.wpforms-container-full input[type="text"]:focus, div.wpforms-container-full .wpforms-form textarea:focus {
  border-color: var(--prune);
  box-shadow: 0 0 0 3px rgba(169, 54, 99, 0.07);
}
.form-lm .form-control::placeholder { color: var(--texte-doux); opacity: 0.45; }

/* File drop */
.file-drop {
  border: 1px dashed var(--nude);
  background: var(--gris-clair);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}
.file-drop:hover { border-color: var(--rose-poudre); background: rgba(232, 154, 160, 0.06); }

/* Subject tabs (contact page) */
.subject-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.subject-tab {
  font-family: var(--font-body); font-size: 0.68rem;
  font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--texte-doux); padding: 0.55rem 1.1rem;
  border: 1px solid var(--nude); background: none; cursor: pointer;
  transition: var(--transition);
}
.subject-tab.active { background: var(--bordeaux); color: var(--ivoire); border-color: var(--bordeaux); }
.subject-tab:hover:not(.active) { border-color: var(--prune); color: var(--prune); }

/* Progress bar */
.progress-bar-lm { height: 3px; background: var(--gris-clair); border-radius: 2px; overflow: hidden; margin-top: 0.4rem; }
.progress-bar-fill { height: 100%; background: linear-gradient(to right, var(--nude), var(--prune)); width: 0%; transition: width 0.4s; }

/* Form success */
.form-success { display: none; }
.form-success.visible { display: block; text-align: center; padding: 4rem 2rem; }
.form-success h3  { font-family: var(--font-display); font-size: 2rem; font-weight: 400; color: var(--texte); margin-bottom: 0.8rem; }
.form-success h4  { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; color: var(--texte); margin-bottom: 0.8rem; }
.form-success p   { font-size: 0.92rem; font-weight: 300; color: var(--texte-doux); line-height: 1.85; max-width: 420px; margin: 0 auto 1.5rem; }
.form-success .fs-sig { font-family: var(--font-script); font-size: 2.8rem; color: var(--prune); }

/* Canaux contact */
.canal-card {
  background: linear-gradient(135deg, var(--rose-poudre) 0%, var(--prune) 100%);
  border: 1px solid transparent;
  position: relative; overflow: hidden; text-align: center;
  transition: var(--transition);
  height: 100%;
  padding: 20px;
}
.canal-card::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 3px; transition: width 0.5s; }
.canal-card:hover::before { width: 100%; }
.canal-card:nth-child(1)::before { background: var(--rose-fraise); }
.canal-card:nth-child(2)::before { background: var(--prune); }
.canal-card:nth-child(3)::before { background: var(--bordeaux); }
.canal-card:nth-child(4)::before { background: var(--nude); }
.canal-card:hover { border-color: var(--nude); box-shadow: var(--shadow-md); transform: translateY(-6px); }
.canal-icon-wrap {
  width: 60px; height: 60px; border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--nude); background: var(--gris-clair);
  transition: var(--transition);
}
.canal-card:hover .canal-icon-wrap { background: var(--bordeaux); border-color: var(--bordeaux); }
.canal-icon-wrap svg { width: 24px; height: 24px; stroke: var(--prune); fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.3s; }
.canal-card:hover .canal-icon-wrap svg { stroke: var(--ivoire); }
.canal-title { font-family: var(--font-display); font-size: 2rem; font-weight: 500; color: var(--texte); margin-bottom: 0.5rem; }
.canal-desc  { font-size: 1.4rem; font-weight: 300; color: #fff; line-height: 1.75; margin-bottom: 1.4rem; height: 80px;  }
.canal-value { font-family: var(--font-display); font-size: 1.6rem; font-style: italic; color: #5E0027; word-break: break-word; }
.canal-delay { display: inline-block; margin-top: 0.8rem; font-size: 1.3rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--texte-doux); border: 1px solid var(--gris-clair); padding: 0.2rem 2rem; background: var(--gris-clair); border-radius: 20px; }
/* Ambiance section (contact) */
.am-bg {
  width: 100%; min-height: 200px; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: rgba(255, 255, 255, 0.2);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 40px;
}
.am-cell:hover .am-bg { transform: scale(1.05); }
.am-bg-1 { background: linear-gradient(145deg, var(--prune), var(--bordeaux)); }
.am-bg-2 { background: linear-gradient(145deg, var(--nude), var(--rose-poudre)); }
.am-bg-3 { background: linear-gradient(145deg, var(--rose-fraise), var(--prune)); }

.ambiance-text .section-title { margin: 1rem 0 1.5rem; }
.ambiance-text p { font-size: 1.5rem; font-weight: 300; color: var(--texte-doux); line-height: 1.95; margin-bottom: 1.4rem; }
.ambiance-links { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 2rem; }
.ambiance-link {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.9rem 1.2rem; background: var(--blanc);
  border: 1px solid var(--nude); transition: var(--transition);
  text-decoration: none;
  border-radius: 40px;
}
.ambiance-link:hover { border-color: var(--prune); transform: translateX(5px); }
.al-icon svg { width: 18px; height: 18px; stroke: var(--prune); fill: none; stroke-width: 1.4; stroke-linecap: round; }
.al-text { font-size: 0.82rem; font-weight: 300; color: var(--texte-doux); }
.al-text strong { display: block; font-size: 1.5rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--texte); font-weight: 500; margin-bottom: 0.1rem}
.al-arrow { margin-left: auto; color: var(--nude); font-size: 0.9rem; transition: transform 0.3s, color 0.3s; }
.ambiance-link:hover .al-arrow { transform: translateX(4px); color: var(--prune); }

/* Info blocks (contact) */
.info-creatrice { background: var(--bordeaux); padding: 2.5rem; position: relative; overflow: hidden; }
.info-creatrice::before { content: ''; position: absolute; top: -80px; right: -80px; width: 250px; height: 250px; border-radius: 50%; border: 1px solid rgba(231, 207, 175, 0.1); pointer-events: none; }
.ic-portrait {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--nude), var(--rose-poudre));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  font-family: var(--font-script); font-size: 2.2rem; color: var(--ivoire);
  border: 2px solid rgba(231, 207, 175, 0.4);
}
.info-creatrice h3 { font-family: var(--font-display); font-size: 2.3rem; font-weight: 400; color: var(--ivoire); margin-bottom: 0.3rem; }
.info-creatrice .ic-role { font-size: 1rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250, 247, 242, 0.5); margin-bottom: 1.2rem; }
.info-creatrice p { font-size: 1.5rem; font-weight: 300; color: rgba(250, 247, 242, 0.65); line-height: 1.85; margin-bottom: 1.5rem; }
.info-creatrice blockquote { border-left: 2px solid var(--rose-poudre); padding-left: 1rem; font-family: var(--font-display); font-size: 1.8rem; font-style: italic; color: rgba(250, 247, 242, 0.8); line-height: 1.6; margin: 0; }

.info-horaires { background: var(--blanc); border: 1px solid var(--nude); padding: 2rem; }
.info-horaires h4 { font-family: var(--font-body); font-size: 1.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--prune); font-weight: 500; margin-bottom: 1.2rem; }
.horaire-row { display: flex; justify-content: space-between; align-items: center; padding: 0.65rem 0; border-bottom: 1px solid var(--gris-clair); }
.horaire-row:last-child { border-bottom: none; }
.horaire-jour { font-size: 1.6rem; font-weight: 300; color: var(--texte-doux); }
.horaire-heure { font-family: var(--font-display); font-weight: 400; color: var(--texte); }

.am-bg img{
  border-radius: 40px;
}

/* ================================================================
   PAGES LÉGALES
================================================================ */
#legal-content,
#cgv-content { padding: 5rem 0; background: var(--ivoire); }

/* Nav latérale sticky */
.legal-nav,
.cgv-nav { position: sticky; top: 110px; }
.legal-nav-title,
.cgv-nav-title {
  font-family: var(--font-body); font-size: 0.62rem;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--texte-doux); font-weight: 500;
  margin-bottom: 1rem; padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--nude);
}
.legal-nav-list,
.cgv-nav-list { display: flex; flex-direction: column; list-style: none; padding: 0; }
.legal-nav-link,
.cgv-nav-link {
  display: block; padding: 0.55rem 0;
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 300;
  color: var(--texte-doux);
  border-left: 2px solid transparent;
  padding-left: 0.8rem;
  transition: color 0.25s, border-color 0.25s;
}
.legal-nav-link:hover,
.cgv-nav-link:hover,
.legal-nav-link.active,
.cgv-nav-link.active { color: var(--prune); border-left-color: var(--prune); }

/* Sections légales */
.legal-section,
.cgv-section {
  margin-bottom: 4rem; padding-bottom: 4rem;
  border-bottom: 1px solid rgba(231, 207, 175, 0.5);
  scroll-margin-top: 110px;
}
.legal-section:last-child,
.cgv-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.legal-section-header,
.cgv-section-header { display: flex; align-items: flex-start; gap: 1.2rem; margin-bottom: 2rem; }
.legal-section-num,
.cgv-section-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; color: var(--nude); line-height: 1; flex-shrink: 0; min-width: 2.5rem; }
.legal-section-label,
.cgv-section-label { font-family: var(--font-body); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--prune); font-weight: 500; display: block; margin-bottom: 0.3rem; }
.legal-section-title,
.cgv-section-title { font-family: var(--font-display); font-size: 1.7rem; font-weight: 400; color: var(--texte); line-height: 1.2; }

.legal-p,
.cgv-p { font-size: 0.9rem; font-weight: 300; color: var(--texte-doux); line-height: 2; margin-bottom: 1rem; }
.legal-p strong,
.cgv-p strong { color: var(--texte); font-weight: 500; }
.legal-p a,
.cgv-p a { color: var(--prune); text-decoration: underline; text-underline-offset: 2px; }

.legal-info-box,
.cgv-info-box {
  background: var(--gris-clair); border: 1px solid var(--nude);
  border-left: 3px solid var(--rose-poudre);
  padding: 1.4rem 1.6rem; margin: 1.5rem 0;
}
.legal-info-box p,
.cgv-info-box p { font-size: 0.88rem; font-weight: 300; color: var(--texte-doux); line-height: 1.85; margin: 0; }

.legal-data-box,
.cgv-data-box { background: var(--blanc); border: 1px solid var(--nude); padding: 1.8rem 2rem; margin: 1.5rem 0; }
.legal-data-row,
.cgv-data-row { display: flex; gap: 1rem; padding: 0.55rem 0; border-bottom: 1px solid var(--gris-clair); align-items: baseline; }
.legal-data-row:last-child,
.cgv-data-row:last-child { border-bottom: none; }
.legal-data-key,
.cgv-data-key { font-family: var(--font-body); font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--prune); font-weight: 500; min-width: 180px; flex-shrink: 0; }
.legal-data-val,
.cgv-data-val { font-size: 0.88rem; font-weight: 300; color: var(--texte-doux); line-height: 1.6; }

.legal-list,
.cgv-list { margin: 0.8rem 0 1.2rem; display: flex; flex-direction: column; gap: 0.55rem; list-style: none; padding: 0; }
.legal-list li,
.cgv-list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.88rem; font-weight: 300; color: var(--texte-doux); line-height: 1.8; }
.legal-list li::before,
.cgv-list li::before { content: '✦'; color: var(--rose-poudre); font-size: 0.55rem; margin-top: 0.5rem; flex-shrink: 0; }

/* CTA légal */
#legal-cta,
#cgv-cta { padding: 5rem 0; background: var(--gris-clair); border-top: 1px solid rgba(231, 207, 175, 0.5); }


/* ================================================================
   CREATIONS PAGE — Filtres, Produits, Banner, Coups de coeur
================================================================ */

/* Filtres */
#filters-bar {
  background: var(--blanc);
  border-bottom: 1px solid rgba(231, 207, 175, 0.5);
  position: sticky;
  top: 72px;
  z-index: 50;
}
.filters-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  min-height: 64px;
}

.filter-tabs { display: flex; align-items: center; flex-wrap: wrap; }
.filter-tab {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--texte-doux);
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.filter-tab:hover { color: var(--prune); }
.filter-tab.active { color: var(--prune); border-bottom-color: var(--prune); font-weight: 500; }

/* Product card */
.product-card { position: relative; background: var(--blanc); transition: var(--transition); cursor: pointer; height: 100%; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-card.hidden { display: none; }

.product-img { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.product-img-bg {
  position: absolute; inset: 0;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex; align-items: center; justify-content: center;
}
.product-card:hover .product-img-bg { transform: scale(1.06); }
.product-icon { font-size: 3rem; color: rgba(255, 255, 255, 0.2); pointer-events: none; }

.badge-wrap { position: absolute; top: 0.9rem; left: 0.9rem; display: flex; flex-direction: column; gap: 0.4rem; z-index: 2; }
.badge-lm { font-family: var(--font-body); font-size: 0.58rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.25rem 0.65rem; display: inline-block; }
.badge-new   { background: var(--bordeaux); color: var(--ivoire); }
.badge-sm    { background: var(--prune);    color: var(--ivoire); }

.product-info { padding: 1.1rem 1.2rem 1.4rem; border-top: 1px solid var(--gris-clair); }
.product-category { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--prune); margin-bottom: 0.35rem; font-weight: 500; }
.product-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; color: var(--texte); line-height: 1.25; margin-bottom: 0.6rem; }
.product-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 0.8rem; border-top: 1px solid var(--gris-clair); margin-top: 0.4rem; }
.product-price { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; color: var(--bordeaux); }
.product-price .from { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--texte-doux); display: block; margin-bottom: 0.1rem; font-family: var(--font-body); }

/* Banner sur-mesure (créations) */
#banner-sm {
  margin: 4rem 0;
  background: var(--bordeaux);
  position: relative;
  overflow: hidden;
}
#banner-sm::before {
  content: 'Sur-mesure';
  position: absolute; right: -2rem; top: -2rem;
  font-family: var(--font-script); font-size: 10rem;
  color: rgba(255, 255, 255, 0.05);
  white-space: nowrap; pointer-events: none; line-height: 1;
}

/* Coups de cœur */
#coup-coeur {
  padding: 5rem 0 8rem;
  background: var(--gris-clair);
  position: relative;
  overflow: hidden;
}
.cc-grid {
  display: grid;
  grid-template-columns: 5fr 3fr 4fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.cc-card { position: relative; overflow: hidden; cursor: pointer; transition: var(--transition); }
.cc-card:hover { box-shadow: var(--shadow-lg); }
.cc-card-a { grid-column: 1; grid-row: 1 / 3; }
.cc-card-b { grid-column: 2; grid-row: 1; }
.cc-card-c { grid-column: 3; grid-row: 1; }
.cc-card-d { grid-column: 2 / 4; grid-row: 2; }

.cc-img { width: 100%; height: 100%; min-height: 260px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.cc-card-a .cc-img { min-height: 560px; }
.cc-bg { position: absolute; inset: 0; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.cc-card:hover .cc-bg { transform: scale(1.05); }
.cc-bg-a { background: linear-gradient(160deg, var(--prune) 0%, var(--bordeaux) 100%); }
.cc-bg-b { background: linear-gradient(160deg, var(--nude) 0%, var(--rose-poudre) 100%); }
.cc-bg-c { background: linear-gradient(160deg, var(--rose-fraise) 0%, var(--prune) 100%); }
.cc-bg-d { background: linear-gradient(160deg, var(--rose-poudre) 0%, var(--nude) 100%); }
.cc-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(46, 42, 42, 0.75) 0%, transparent 50%); }
.cc-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.8rem; z-index: 2; }
.cc-cat { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose-poudre); margin-bottom: 0.4rem; }
.cc-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--ivoire); line-height: 1.15; margin-bottom: 0.6rem; }
.cc-price { font-family: var(--font-display); font-size: 1.1rem; color: var(--nude); }

/* Reassurance */
#reassurance {
  background: var(--blanc);
  border-top: 1px solid rgba(231, 207, 175, 0.4);
  border-bottom: 1px solid rgba(231, 207, 175, 0.4);
  padding: 2.5rem 0;
}
.r-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 0 2rem;
  border-right: 1px solid rgba(231, 207, 175, 0.4);
  transition: background 0.3s;
}
.r-ico svg { width: 46px; height: 46px; stroke: var(--prune); fill: none; stroke-width: 1.4; stroke-linecap: round; }
.r-txt strong { display: block; font-size: 1.5rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--texte); font-weight: 500; margin-bottom: 0.2rem; }
.r-txt span { font-size: 1.5rem; font-weight: 300; color: var(--texte-doux); }
.r-itemlast{  display: flex; align-items: center; gap: 1rem;
  padding: 0 2rem;
  border-right: 1px solid rgba(231, 207, 175, 0.4);
  transition: background 0.3s;
  border-right: none;
}

/* ================================================================
   SUR-MESURE PAGE — Processus, Types, Inspirations, FAQ, Témoignages
================================================================ */

/* Processus */
#processus {
  padding: 8rem 0;
  background: var(--gris-clair);
  position: relative;
  overflow: hidden;
}
#processus::before {
  content: 'Processus';
  position: absolute; bottom: -2rem; left: -1rem;
  font-family: var(--font-script); font-size: 12rem;
  color: rgba(231, 207, 175, 0.15);
  pointer-events: none; white-space: nowrap; line-height: 1;
}
.processus-header { text-align: center; margin-bottom: 5.5rem; }
.processus-header .section-title { margin: 1rem 0 1.2rem; }
.processus-header p { font-size: 0.95rem; font-weight: 300; color: var(--texte-doux); max-width: 520px; margin: 0 auto; line-height: 1.85; }

.step-card { padding: 0 1rem 3rem; position: relative; z-index: 1; text-align: center; }
.step-num-wrap {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ivoire); border: 2px solid var(--nude);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem; transition: var(--transition);
}
.step-card:hover .step-num-wrap { background: var(--bordeaux); border-color: var(--bordeaux); }
.step-num { font-family: var(--font-display); font-size: 1.4rem; font-weight: 300; color: var(--prune); transition: color 0.3s; }
.step-card:hover .step-num { color: var(--ivoire); }
.step-icon  { font-size: 1.6rem; margin-bottom: 1rem; display: block; transition: transform 0.4s; }
.step-card:hover .step-icon { transform: scale(1.2); }
.step-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--texte); margin-bottom: 0.8rem; }
.step-text  { font-size: 0.86rem; font-weight: 300; color: var(--texte-doux); line-height: 1.85; }
.step-duration { display: inline-block; margin-top: 1rem; background: var(--ivoire); border: 1px solid var(--nude); padding: 0.25rem 0.8rem; font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--prune); font-weight: 500; }

/* Types */
#types { padding: 8rem 0; background: var(--ivoire); }
.types-header { text-align: center; margin-bottom: 4rem; }
.types-header .section-title { margin: 1rem 0; }

.type-card {
  position: relative; overflow: hidden;
  border: 1px solid var(--gris-clair); padding: 3rem 2.5rem 2.5rem;
  background: var(--blanc); transition: var(--transition);
  height: 100%;
}
.type-card:hover { border-color: var(--nude); box-shadow: var(--shadow-md); transform: translateY(-5px); }
.type-card::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 3px; background: var(--rose-fraise); transition: width 0.5s; }
.type-card:hover::before { width: 100%; }
.type-wm { position: absolute; top: 0.5rem; right: 1rem; font-family: var(--font-display); font-size: 5rem; font-weight: 300; color: rgba(231, 207, 175, 0.25); line-height: 1; pointer-events: none; }
.type-icon-box {
  width: 52px; height: 52px;
  border: 1px solid var(--nude); background: var(--gris-clair);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.8rem; transition: var(--transition);
}
.type-card:hover .type-icon-box { background: var(--prune); border-color: var(--prune); }
.type-icon-box svg { width: 24px; height: 24px; stroke: var(--prune); fill: none; stroke-width: 1.4; stroke-linecap: round; transition: stroke 0.3s; }
.type-card:hover .type-icon-box svg { stroke: var(--ivoire); }
.type-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; color: var(--texte); margin-bottom: 0.8rem; }
.type-desc  { font-size: 0.88rem; font-weight: 300; color: var(--texte-doux); line-height: 1.85; margin-bottom: 1.5rem; }
.type-price { display: flex; align-items: baseline; gap: 0.5rem; padding-top: 1.5rem; border-top: 1px solid var(--gris-clair); }
.type-price .from { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--texte-doux); }
.type-price .amount { font-family: var(--font-display); font-size: 1.6rem; font-weight: 300; color: var(--bordeaux); }

/* Inspirations */
#inspirations { padding: 8rem 0; background: var(--bordeaux); position: relative; overflow: hidden; }
.inspi-header { text-align: center; margin-bottom: 4rem; position: relative; z-index: 1; }
.inspi-header p { color: rgba(250, 247, 242, 0.6); font-weight: 300; font-size: 0.95rem; line-height: 1.8; max-width: 500px; margin: 0 auto; }
.inspi-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 260px 220px;
  gap: 6px; position: relative; z-index: 1;
}
.inspi-cell { position: relative; overflow: hidden; cursor: pointer; }
.ic1 { grid-column: 1 / 5; grid-row: 1; }
.ic2 { grid-column: 5 / 8; grid-row: 1; }
.ic3 { grid-column: 8 / 13; grid-row: 1; }
.ic4 { grid-column: 1 / 4; grid-row: 2; }
.ic5 { grid-column: 4 / 8; grid-row: 2; }
.ic6 { grid-column: 8 / 10; grid-row: 2; }
.ic7 { grid-column: 10 / 13; grid-row: 2; }
.inspi-bg {
  position: absolute; inset: 0;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex; align-items: center; justify-content: center;
}
.inspi-cell:hover .inspi-bg { transform: scale(1.06); }
.ib1 { background: linear-gradient(145deg, rgba(169,54,99,0.8), rgba(94,0,39,0.9)); }
.ib2 { background: linear-gradient(145deg, rgba(231,207,175,0.6), rgba(232,154,160,0.8)); }
.ib3 { background: linear-gradient(145deg, rgba(210,95,121,0.7), rgba(169,54,99,0.9)); }
.ib4 { background: linear-gradient(145deg, rgba(250,247,242,0.1), rgba(231,207,175,0.3)); }
.ib5 { background: linear-gradient(145deg, rgba(94,0,39,0.9), rgba(169,54,99,0.7)); }
.ib6 { background: linear-gradient(145deg, rgba(232,154,160,0.7), rgba(210,95,121,0.9)); }
.ib7 { background: linear-gradient(145deg, rgba(169,54,99,0.6), rgba(94,0,39,0.8)); }
.inspi-caption {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(46, 42, 42, 0.7) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 1rem 1.2rem;
  opacity: 0; transition: opacity 0.35s;
}
.inspi-cell:hover .inspi-caption { opacity: 1; }
.inspi-caption p { font-family: var(--font-display); font-size: 0.95rem; font-style: italic; color: var(--ivoire); font-weight: 300; }

/* FAQ */
#faq { padding: 8rem 0; background: var(--gris-clair); position: relative; overflow: hidden; }
#faq::after {
  content: 'FAQ';
  position: absolute; top: -1rem; right: -1rem;
  font-family: var(--font-script); font-size: 14rem;
  color: rgba(231, 207, 175, 0.14);
  pointer-events: none; white-space: nowrap; line-height: 1;
}
.faq-aside { position: sticky; top: 110px; }
.faq-aside .section-title { margin: 1rem 0 1.5rem; }
.faq-aside p { font-size: 0.9rem; font-weight: 300; color: var(--texte-doux); line-height: 1.85; margin-bottom: 2rem; }
.faq-aside-quote { border-left: 2px solid var(--rose-poudre); padding-left: 1.2rem; margin-bottom: 2rem; }
.faq-aside-quote p { font-family: var(--font-display); font-size: 1.1rem; font-style: italic; color: var(--texte); line-height: 1.6; margin: 0; }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(231, 207, 175, 0.6); overflow: hidden; }
.faq-item:first-child { border-top: 1px solid rgba(231, 207, 175, 0.6); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem 0; cursor: pointer; gap: 1.5rem;
  background: none; border: none; width: 100%; text-align: left;
}
.fq-text { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--texte); transition: color 0.25s; flex: 1; line-height: 1.35; }
.faq-question:hover .fq-text,
.faq-item.open .fq-text { color: var(--prune); }
.fq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1px solid var(--nude); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--prune); font-size: 1rem;
  transition: var(--transition);
}
.faq-item.open .fq-icon { background: var(--prune); color: var(--ivoire); border-color: var(--prune); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.3s; padding: 0; }
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 1.6rem; }
.faq-answer p { font-size: 0.9rem; font-weight: 300; color: var(--texte-doux); line-height: 1.9; }

/* Témoignages */
#temoignages { padding: 8rem 0; background: var(--ivoire); position: relative; overflow: hidden; }
.temo-header { text-align: center; margin-bottom: 4rem; }
.temo-header .section-title { margin: 1rem 0; }

.temo-featured {
  background: var(--bordeaux); padding: 4rem;
  position: relative; overflow: hidden; height: 100%;
}
.temo-featured::before {
  content: '\201C';
  position: absolute; top: 1.5rem; right: 2rem;
  font-family: var(--font-display); font-size: 9rem;
  color: rgba(231, 207, 175, 0.12); line-height: 1; pointer-events: none;
}
.temo-featured .temo-text { font-family: var(--font-display); font-size: 1.4rem; font-style: italic; font-weight: 300; color: var(--ivoire); line-height: 1.65; margin-bottom: 2rem; }
.temo-featured .temo-author { border-top: 1px solid rgba(231, 207, 175, 0.2); padding-top: 1.5rem; }
.temo-author-name { display: block; font-size: 0.82rem; font-weight: 500; }
.temo-author-sub  { display: block; font-size: 0.72rem; margin-top: 0.1rem; }
.temo-featured .temo-author-name { color: var(--ivoire); }
.temo-featured .temo-author-sub  { color: rgba(250, 247, 242, 0.5); }
.temo-card .temo-author-name { color: var(--texte); }
.temo-card .temo-author-sub  { color: var(--texte-doux); }


/* ================================================================
   RESPONSIVE COMPLÉMENTAIRE (Bootstrap gère les breakpoints de grille)
================================================================ */

@media (max-width: 991.98px) {
  .pg-home #hero { min-height: auto; }
  .hero-content { padding: 4rem 1.5rem 3rem; }
  .hero-image-inner { min-height: 300px; }
  .hero-scroll { display: none; }

  .atelier-visual { order: -1; }
  .atelier-signature, .atelier-frame { display: none; }

  .pg-surmesure #hero { min-height: auto; }
  .hero-mosaic { min-height: 400px; }
  .hero-badge-float { display: none; }

  .portrait-sticker  { left: 1rem; bottom: 1rem; padding: 0.8rem 1rem; }
  .portrait-badge-v  { display: none; }
  .portrait-frame    { display: none; }
  .hero-deco         { display: none; }

  .galerie-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .g1,.g2,.g3,.g4,.g5,.g6 { grid-column: auto; grid-row: auto; }

  .inspi-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 200px); }
  .ic1,.ic2,.ic3,.ic4,.ic5,.ic6,.ic7 { grid-column: auto; grid-row: auto; }

  .cc-grid { grid-template-columns: 1fr; }
  .cc-card-a,.cc-card-b,.cc-card-c,.cc-card-d { grid-column: auto; grid-row: auto; }
  .cc-card-a .cc-img { min-height: 300px; }

  .form-card { padding: 2rem 1.5rem; }
  .temo-featured { padding: 2.5rem; }

  .faq-aside { position: static; }

  .legal-nav, .cgv-nav { position: static; margin-bottom: 3rem; }

  #atelier, #creations, #valeurs, #sur-mesure, #avis, #cta-final,
  #intro, #parcours, #savoir-faire, #galerie,
  #processus, #types, #inspirations, #faq, #temoignages,
  #canaux, #contact-form,
  #reassurance { padding: 5rem 0; }
}

@media (max-width: 575.98px) {
  .hero-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; min-height: 300px; }
  .mosaic-cell:nth-child(1) { grid-row: span 1; }
}




div.wpforms-container-full .wpforms-form .wpforms-field .wpforms-field-row:last-child, div.wpforms-container-full input[type="email"], div.wpforms-container-full input[type="text"]{
  min-width: 100%;
  border-radius: 20px;
}




.timeline-card span{
  text-transform: uppercase;
}
.wpforms-field-container{
  background: linear-gradient(135deg, var(--rose-poudre) 0%, var(--prune) 100%) !important;
  border-radius: 40px !important;
  padding: 20px !important;
}
.wpforms-container .wpforms-field{
  padding: 5px;
}
div.wpforms-container-full .wpforms-form .wpforms-submit-container{
  text-align: center;
}
.galerie-caption p{
  margin-left: 20px;
}