/*
 Theme Name:   ATF Child Theme
 Theme URI:    https://atelieratf.fr
 Description:  Thème enfant Hello Elementor — v4.1
 Author:       Thomas Roquigny
 Template:     hello-elementor
 Version:      4.1.0
 Text Domain:  atf-child
*/

/* Playfair Display 600 + Jost — Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500&family=Playfair+Display:wght@600&display=swap');

/* ============================================================
   VARIABLES
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #0e0d0c;
  --bg-warm:      #17150e;
  --bg-light:     #f5f0eb;
  --text:         #ece8df;
  --text-body:    #b5b0a8;
  --text-muted:   #7a7367;
  --gold:         #b8955a;
  --white:        #ffffff;
  --font-display: 'Playfair Display', 'Cormorant Garant', Georgia, serif;
  --font-body:    'Jost', 'Helvetica Neue', Arial, sans-serif;
  --nav-h:        72px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Neutraliser Hello Elementor */
.site-header, .site-footer,
.elementor-location-header,
.elementor-location-footer,
header.entry-header { display: none !important; }

/* ============================================================
   LOADER ANIMÉ — GIF fond noir, logo blanc, 1 seule boucle
   ============================================================ */
.atf-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: #0e0d0c;
  display: flex; align-items: center; justify-content: center;
  pointer-events: all;
  transition: opacity 0.5s ease;
}
.atf-loader.is-leaving {
  opacity: 0;
  pointer-events: none;
}
.atf-loader__gif {
  width: min(320px, 55vw);
  height: auto;
  display: block;
}
body:not(.loaded) { overflow: hidden; }
body.loaded .atf-loader { display: none; }

/* ============================================================
   TYPOGRAPHIE
   ============================================================ */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); }

h3 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
}

p { margin-bottom: 1.2em; color: var(--text-body); }
p:last-child { margin-bottom: 0; }
strong { font-weight: 500; color: var(--text); }
address { font-style: normal; }

a { color: var(--gold); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .72; }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 6rem 0; }

.label {
  display: block;
  font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1rem;
}
.separator {
  width: 48px; height: 1px; background: var(--gold);
  margin: 1.4rem 0 1.8rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.atf-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  background: linear-gradient(to bottom, rgba(14,13,12,.95) 0%, rgba(14,13,12,0) 100%);
  backdrop-filter: blur(2px);
}

.atf-nav__logo-img {
  height: 36px; width: auto; display: block;
  filter: brightness(0) invert(1); opacity: 0.9;
  transition: opacity 0.2s;
}
.atf-nav__logo-img:hover { opacity: 0.7; }

.atf-nav__links { display: flex; gap: 2.5rem; align-items: center; }
.atf-nav__links a {
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text);
}
.atf-nav__links a:hover,
.atf-nav__links a[aria-current="page"] { color: var(--gold); opacity: 1; }
.atf-nav__sep { width: 36px; height: 1px; background: var(--text-muted); }

/* Burger — barres visibles */
.atf-nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; z-index: 201;
}
.atf-burger-bar {
  display: block;
  width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  pointer-events: none;
}

/* ============================================================
   MENU MOBILE
   ============================================================ */
.atf-mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.6);
  z-index: 300; opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.atf-mobile-overlay.is-open { opacity: 1; pointer-events: auto; }

.atf-mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; width: 300px;
  background: rgba(14,13,12,.98); z-index: 301;
  padding: 2rem; display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.24,1,.29,1);
}
.atf-mobile-menu.is-open { transform: translateX(0); }
.atf-mobile-menu__close {
  font-size: 2.5rem; line-height: 1; color: var(--text-muted);
  background: none; border: none; cursor: pointer;
  align-self: flex-end; margin-bottom: 3rem; padding: 0;
}
.atf-mobile-menu__links { display: flex; flex-direction: column; gap: 2rem; }
.atf-mobile-menu__links a {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text);
}
.atf-mobile-menu__links a:hover { color: var(--gold); opacity: 1; }

/* ============================================================
   HERO — pleine hauteur, vidéo fond, grain
   ============================================================ */
.atf-hero {
  min-height: 100vh;
  display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
  padding: 0 2rem 5rem;
}

.atf-hero__video-wrap {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.atf-hero__video-wrap video {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%; object-fit: cover;
  pointer-events: none;
}
.atf-hero__video-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(14,13,12,.52); z-index: 1;
}
.atf-hero__grain {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none; opacity: 0.11;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 300px 300px; background-repeat: repeat;
  mix-blend-mode: overlay;
}

.atf-hero__content {
  position: relative; z-index: 3;
  max-width: 1180px; width: 100%; margin: 0 auto;
  display: flex; flex-direction: column;
}

.atf-hero__top {
  margin-bottom: auto;
  padding-top: calc(var(--nav-h) + 3rem);
}

.atf-hero__label {
  display: block;
  font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1.2rem;
}

.atf-hero__h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.1; color: var(--text);
  max-width: 70%;
}

.atf-hero__dash {
  text-decoration: line-through;
  opacity: 0.22; letter-spacing: -0.05em;
}

.atf-hero__bottom { margin-top: 6rem; }

.atf-hero__h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.1; color: var(--text);
  text-align: right; max-width: 70%; margin-left: auto;
}

/* ============================================================
   SECTIONS SERVICES
   ============================================================ */
.atf-service { padding: 7rem 0; }
.atf-service--dark { background: var(--bg); }
.atf-service--warm { background: var(--bg-warm); }

.atf-service__inner {
  max-width: 1180px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.atf-service--reverse .atf-service__inner { direction: rtl; }
.atf-service--reverse .atf-service__inner > * { direction: ltr; }

.atf-service__media { aspect-ratio: 16/9; background: #1a1916; position: relative; overflow: hidden; }
.atf-service__media iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}

.atf-service__badge {
  display: inline-block;
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  border: 1px solid rgba(184,149,90,0.45); color: var(--gold);
  padding: 0.3em 0.85em; margin-bottom: 2.5rem;
}

.atf-service__content h2 { margin-bottom: 0; }
.atf-service__content .separator { margin-top: 1.2rem; }

.atf-refashion-link {
  display: inline-block; font-size: 0.75rem; letter-spacing: 0.1em;
  color: var(--gold); border-bottom: 1px solid rgba(184,149,90,0.4);
  padding-bottom: 0.1em; margin-top: 1rem;
}
.atf-refashion-link:hover { opacity: 0.75; }

.atf-refashion-logo {
  max-width: 220px; height: auto;
  margin-bottom: 1.8rem; display: block;
  filter: brightness(0) invert(1); opacity: 0.6;
}

/* ============================================================
   MARQUES — 3 lignes fixes
   ============================================================ */
.atf-brands { padding: 7rem 0; background: var(--bg); }
.atf-brands__inner { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }

.atf-brands__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  line-height: 1.2; color: var(--text);
  max-width: 820px; margin-bottom: 3.5rem;
  text-wrap: balance;
}

/* 3 lignes fixes — remplace l'ancienne grille libre */
.atf-brands__logos { display: none; } /* désactivé */

.atf-brands__row {
  display: flex; align-items: center;
  justify-content: center; gap: 3.5rem;
  flex-wrap: wrap; margin-bottom: 2.5rem;
}
.atf-brands__row:last-child { margin-bottom: 0; }
.atf-brands__row img {
  height: 38px; width: auto;
  opacity: 0.6; filter: brightness(0) invert(1);
  transition: opacity 0.25s; flex-shrink: 0;
}
.atf-brands__row img:hover { opacity: 1; }

/* ============================================================
   FAQ — section homepage + page dédiée
   ============================================================ */
.atf-faq { padding: 7rem 0; background: #0a0908; }
.atf-faq__inner { max-width: 860px; margin: 0 auto; padding: 0 2rem; }
.atf-faq__inner > h2 { margin-bottom: 3rem; }

/* CTA sans barre horizontale */
.atf-faq__cta {
  margin-top: 3rem;
  padding-top: 0;
  border-top: none;
  text-align: center;
}
.atf-faq__cta p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.4rem; }

.faq__list { list-style: none; }
.faq__item { border-bottom: 1px solid rgba(255,255,255,.07); }

.faq__question {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.4rem 0;
  display: flex; align-items: flex-start; gap: 1rem; text-align: left;
  font-family: var(--font-body); font-size: .88rem; letter-spacing: .03em;
  color: var(--text); line-height: 1.5;
}
.faq__question::before {
  content: '›'; color: var(--gold); font-size: 1.3em;
  flex-shrink: 0; transition: transform .3s ease;
}
.faq__item.open .faq__question::before { transform: rotate(90deg); }
.faq__question:hover { color: var(--white); }

/* Questions FAQ : même typo que body, pas de h3/h2 stylistique */
.faq__question h3,
.faq__question h2 {
  font-family: var(--font-body); font-weight: 400;
  font-size: .88rem; letter-spacing: .03em; text-transform: none;
  color: inherit; line-height: 1.5;
}

.faq__answer {
  display: none;
  padding: .2rem 0 1.6rem 2rem;
  color: var(--text-muted); font-size: .88rem; line-height: 1.85;
}
.faq__answer a { font-size: inherit; }
.faq__item.open .faq__answer { display: block; }

/* ============================================================
   CTA BUTTON
   ============================================================ */
.btn {
  display: inline-block;
  padding: .85em 2.4em;
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  border: 1px solid var(--gold); color: var(--gold);
  transition: background .25s, color .25s; margin-top: 1.6rem;
}
.btn:hover { background: var(--gold); color: var(--bg); opacity: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.atf-footer {
  background: #080807; padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.atf-footer__inner { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.atf-footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
}
.atf-footer__logo-img {
  height: 32px; width: auto; display: block;
  filter: brightness(0) invert(1); opacity: 0.5;
  margin-bottom: 1.2rem;
}
.atf-footer__brand-name {
  font-family: var(--font-display); font-size: 1rem;
  letter-spacing: .06em; color: var(--text); margin-bottom: .6rem;
}
.atf-footer__address { font-size: .8rem; color: var(--text-muted); line-height: 2; }
.atf-footer__col-title {
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: .8rem; display: block;
}
.atf-footer__col-title + .atf-footer__col-title { margin-top: 1.4rem; }
.atf-footer__col a { font-size: .83rem; color: var(--text); display: block; margin-bottom: .3rem; }
.atf-footer__social { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.4rem; }
.atf-footer__social a, .atf-footer__legal a {
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted);
}
.atf-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.04); padding-top: 1.5rem; text-align: center;
}
.atf-footer__bottom p {
  font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted);
}
.atf-footer__bottom a { color: var(--text-muted); }
.atf-footer__bottom a:hover { color: var(--gold); opacity: 1; }

/* ============================================================
   PAGE : SERVICE RETOUCHE
   ============================================================ */
.retouche-hero {
  padding: calc(var(--nav-h) + 3rem) 2rem 3rem;
  text-align: center; min-height: 35vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  background: linear-gradient(to bottom, #0e0d0c 60%, #111);
}
.retouche-hero h1 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 600; color: var(--text); }
.retouche-hero .retouche-hero__sub { font-family: var(--font-display); font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 300; color: var(--text-muted); margin-top: 0.8rem; }

.tarif-wrapper { background: var(--bg-light); color: #111; padding: 3rem 2rem 5rem; }
.tarif-inner { max-width: 900px; margin: 0 auto; }
.tarif-brand-bar { display: flex; align-items: center; justify-content: center; gap: 2rem; margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid #ddd; }
.tarif-brand-title h2 { font-family: var(--font-body); font-weight: 700; font-size: .85rem; letter-spacing: .22em; text-transform: uppercase; color: #111; margin-bottom: .2rem; }
.tarif-brand-title p { font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: #555; margin: 0; }
.tarif-block { margin-bottom: 3.5rem; }
.tarif-section-heading { font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; color: #111; font-weight: 700; display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.tarif-section-heading::before, .tarif-section-heading::after { content: ''; flex: 1; height: 1px; background: #111; }
.tarif-category { margin-bottom: 2.5rem; }
.tarif-category h3 { font-family: var(--font-body); font-weight: 700; font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: #111; padding-bottom: .5rem; border-bottom: 2px solid #111; margin-bottom: 1rem; }
.tarif-row { display: flex; justify-content: space-between; align-items: baseline; padding: .55rem 0; border-bottom: 1px dotted #ccc; gap: 1rem; font-size: .9rem; color: #333; }
.tarif-row__name { flex: 1; }
.tarif-row__prices { white-space: nowrap; }
.tarif-row__old { text-decoration: line-through; color: #aaa; margin-right: .5rem; }
.tarif-row__new { font-weight: 700; color: #111; }
.tarif-note { font-size: .78rem; color: #555; line-height: 1.8; padding: 1rem 1.2rem; background: #ede9e3; border-left: 3px solid #b8955a; margin-top: 2rem; }
.tarif-note strong { color: #111; }

/* ============================================================
   PAGE : CONTACT
   ============================================================ */
.contact-hero { padding: 0 2rem 4rem; min-height: 50vh; display: flex; align-items: flex-end; position: relative; overflow: hidden; }
.contact-hero__video { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.contact-hero__video video { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); min-width: 100%; min-height: 100%; object-fit: cover; }
.contact-hero__video::after { content: ''; position: absolute; inset: 0; background: rgba(14,13,12,.62); z-index: 1; }
.contact-hero__content { position: relative; z-index: 2; padding-top: calc(var(--nav-h) + 3rem); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4rem; padding: 5rem 0; }
.contact-block h2 { font-family: var(--font-body); font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.4rem; }
.contact-block p, .contact-block a { font-size: .9rem; color: var(--text); display: block; }
.contact-block a + a { margin-top: .3rem; }
.contact-maps-btn { display: inline-block; margin-bottom: 1.2rem; padding: .75em 2em; font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; border: 1px solid var(--gold); color: var(--gold); transition: background .25s, color .25s; }
.contact-maps-btn:hover { background: var(--gold); color: var(--bg); opacity: 1; }
.contact-note { font-size: .8rem; color: var(--text-muted); margin-top: 1.2rem; line-height: 1.7; }
.hours-section { padding: 0 0 5rem; }
.hours-section h2 { font-family: var(--font-body); font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2rem; }
.hours-table { border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(255,255,255,.06); }
.hours-table td { padding: .7rem 0; font-size: .88rem; }
.hours-table td:first-child { padding-right: 4rem; color: var(--text-muted); }
.hours-table td:last-child { color: var(--text); }

/* ============================================================
   PAGE : CGV
   ============================================================ */
.cgv-hero { padding: calc(var(--nav-h) + 3rem) 0 2rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.cgv-hero h1 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
.cgv-version { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); margin-top: .8rem; display: block; }
.cgv-body { padding: 4rem 0 6rem; max-width: 780px; }
.cgv-article { margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.05); }
.cgv-article:last-child { border-bottom: none; }
.cgv-article h2 { font-family: var(--font-body); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.cgv-article p { font-size: .9rem; color: var(--text-muted); line-height: 1.9; }
.cgv-article ul { list-style: disc; padding-left: 1.5rem; margin: .8rem 0 1rem; }
.cgv-article li { font-size: .9rem; color: var(--text-muted); line-height: 1.9; margin-bottom: .2rem; }

/* ============================================================
   QUIZ — label profil + corrections mobile
   ============================================================ */
.quiz-profile-label {
  display: block;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1rem;
}
.quiz-btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* Why-cards — picto devant chaque titre */
.why-card h3 {
  display: flex; align-items: flex-start;
  gap: 0.6em; line-height: 1.4;
}
.why-card__icon {
  width: 1.6em; height: 1.6em; flex-shrink: 0;
  stroke: currentColor; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  margin-top: 0.05em;
}

/* ============================================================
   UTILITAIRES
   ============================================================ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .atf-service__inner { grid-template-columns: 1fr; gap: 3rem; }
  .atf-service--reverse .atf-service__inner { direction: ltr; }
  .atf-footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .atf-brands__row { gap: 2rem; }
}

@media (max-width: 600px) {
  /* Nav */
  .atf-nav__links { display: none; }
  .atf-nav__burger { display: flex; }

  /* Hero — équilibre vertical label/H1 haut, H2 bas */
  .atf-hero {
    align-items: stretch;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 4rem;
    min-height: 100svh;
  }
  .atf-hero__content {
    display: flex; flex-direction: column;
    justify-content: space-between; flex: 1;
  }
  .atf-hero__top {
    padding-top: calc(var(--nav-h) + 2rem);
    margin-bottom: 0;
  }
  .atf-hero__bottom { margin-top: 0; }
  .atf-hero__h1 { max-width: 100%; font-size: clamp(1.9rem, 7vw, 3rem); }
  .atf-hero__h2 { max-width: 100%; font-size: clamp(1.9rem, 7vw, 3rem); }

  /* Vidéo mobile — autoplay sans player */
  .atf-hero__video-wrap video {
    position: absolute; width: 100%; height: 100%;
    object-fit: cover; top: 0; left: 0; transform: none;
  }

  /* Marques mobile */
  .atf-brands__row { gap: 1.5rem; margin-bottom: 1.8rem; }
  .atf-brands__row img { height: 26px; }

  /* Quiz mobile */
  .quiz-profile-select { flex-direction: column; gap: 0.5rem; }
  .quiz-profile-btn {
    width: 100%; text-align: left;
    justify-content: flex-start; padding: 0.85em 1.2em;
  }
  .picto-chip { border-radius: 6px; }
  .chip { border-radius: 6px; }

  /* Bouton envoi court sur mobile */
  .quiz-btn-submit { font-size: 0.6rem; padding: 0.7em 1.5em; }

  /* Fil d'ariane : centré au-dessus du bouton — grille colonne */
  .quiz-nav {
    display: flex; flex-direction: column;
    align-items: center; gap: 0.8rem;
  }
  .quiz-nav-dots { order: 1; justify-content: center; }
  .quiz-btn-prev { order: 2; align-self: flex-start; }
  .quiz-btn-next,
  .quiz-btn-submit { order: 3; align-self: flex-end; }
}

/* ── Formulaire de contact natif (fallback CF7) ─────────── */
.contact-form-section { padding: 4rem 0; background: var(--bg-alt, #faf9f7); }
.atf-contact-form { max-width: 640px; }
.atf-form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1.5rem; }
.atf-form-row label { font-size: .875rem; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; color: var(--text-muted, #888); }
.atf-form-row input,
.atf-form-row select,
.atf-form-row textarea { width: 100%; padding: .75rem 1rem; border: 1px solid #d0ccc5; border-radius: 2px; background: #fff; font-family: var(--font-body); font-size: 1rem; color: var(--text); transition: border-color .2s; }
.atf-form-row input:focus,
.atf-form-row select:focus,
.atf-form-row textarea:focus { outline: none; border-color: #111; }
.atf-form-row textarea { resize: vertical; min-height: 140px; }

/* ── Section coordonnées H2 visible ────────────────────── */
.contact-grid h3 { font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .75rem; font-weight: 500; }
