/* ============================================================
   Tel qu'elle — Site V2 · HAUT DE GAMME
   Couture-editorial. Ivory & white, navy ink, apricot as fine
   gold-leaf accent. Ultra-thin Montserrat at large scale,
   editorial numbering, one dramatic navy manifesto spread.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font-sans);
  background: var(--tqe-ivoire); color: var(--tqe-ink);
  font-weight: 300; -webkit-font-smoothing: antialiased; letter-spacing: 0.005em;
}
/* Scopé au contenu Elementor : ne JAMAIS toucher les images du chrome WordPress
   (barre d'admin, avatar) → évite les conflits avec WordPress. */
.elementor img { display: block; max-width: 100%; }
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 5.5rem); }
section { padding: clamp(5rem, 11vw, 11rem) 0; position: relative; }

::selection { background: var(--tqe-or-100); color: var(--tqe-bleu-deep); }

/* ── NAV ── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: 86px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 5.5rem);
  background: transparent; transition: background 0.4s var(--ease-out), border-color 0.4s, height 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(251,248,244,0.86); backdrop-filter: saturate(140%) blur(14px); border-bottom-color: var(--tqe-sand); height: 72px; }
.nav-logo img { height: 42px; display: block; transition: height 0.4s; }
.nav.scrolled .nav-logo img { height: 36px; }
.nav-links { list-style: none; display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 3rem); margin: 0; padding: 0; }
.nav-links a {
  position: relative; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--tqe-ink); text-decoration: none; cursor: pointer; padding: 0.4rem 0;
}
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--tqe-or); transition: width 0.3s var(--ease-out); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-contact {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--tqe-bleu); border: 1px solid var(--tqe-bleu-300); border-radius: 999px;
  padding: 0.7rem 1.5rem; text-decoration: none; transition: all 0.25s; white-space: nowrap;
}
.nav-contact:hover { background: var(--tqe-bleu); color: #fff; border-color: var(--tqe-bleu); }
@media (max-width: 880px){ .nav-links li:not(:last-child){ display: none; } }

/* ── HERO ── */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: stretch; gap: 0; }
.hero-col {
  display: flex; flex-direction: column; justify-content: center;
  padding: 8.5rem clamp(1.5rem,5vw,5.5rem) 5rem; max-width: 760px; margin-left: auto;
}
.hero-kicker { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem; }
.hero-kicker .line { width: 46px; height: 1px; background: var(--tqe-or); }
.hero-kicker span { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--tqe-or-deep); }
.hero h1 {
  font-weight: 200; font-size: clamp(2.9rem, 6vw, 5.6rem); line-height: 1.0;
  letter-spacing: -0.02em; color: var(--tqe-bleu); margin: 0 0 2.25rem;
}
.hero h1 em { font-style: italic; font-weight: 300; color: var(--tqe-or-deep); }
.hero-sub { font-size: clamp(1.05rem, 1.4vw, 1.25rem); font-weight: 300; line-height: 1.8; color: var(--tqe-ink-soft); max-width: 46ch; margin: 0 0 3rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; }
.hero-foot { margin-top: auto; padding-top: 3rem; display: flex; align-items: center; gap: 1rem; }
.hero-foot .vline { width: 1px; height: 40px; background: var(--tqe-sand); }
.hero-foot span { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tqe-stone); }
.hero-media { position: relative; overflow: hidden; }
.hero-media .photo { border-radius: 0; }
.hero-index { position: absolute; top: 8.5rem; right: clamp(1.5rem,4vw,3rem); z-index: 3; font-size: 0.7rem; letter-spacing: 0.2em; color: rgba(255,255,255,0.85); }
@media (max-width: 900px){
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-col { margin: 0; max-width: 100%; padding-top: 7rem; }
  .hero-media { height: 56vh; order: 2; }
  .hero-index { display: none; }
}

/* buttons / links */
.btn {
  display: inline-flex; align-items: center; gap: 0.7rem; font-family: var(--font-sans);
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 1.05rem 2.3rem; border-radius: 999px; text-decoration: none; cursor: pointer;
  border: 1px solid transparent; transition: all 0.25s var(--ease-out);
}
.btn-primary { background: var(--tqe-bleu); color: #fff; }
.btn-primary:hover { background: var(--tqe-bleu-light); transform: translateY(-2px); box-shadow: 0 18px 38px -16px rgba(46,45,122,0.55); }
.link-arrow { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--tqe-bleu); text-decoration: none; }
.link-arrow .ar { width: 30px; height: 1px; background: var(--tqe-bleu); position: relative; transition: width 0.3s var(--ease-out); }
.link-arrow .ar::after { content: ''; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-top: 1px solid var(--tqe-bleu); border-right: 1px solid var(--tqe-bleu); transform: rotate(45deg); }
.link-arrow:hover .ar { width: 46px; }

/* photo zone — refined, thin inner frame */
.photo {
  width: 100%; height: 100%; min-height: 280px; position: relative; overflow: hidden;
  background:
    radial-gradient(130% 100% at 78% 8%, var(--tqe-or-100), transparent 52%),
    linear-gradient(155deg, var(--tqe-cream), var(--tqe-bleu-100) 120%);
  display: flex; align-items: center; justify-content: center;
}
.photo.dark { background: linear-gradient(155deg, var(--tqe-bleu), var(--tqe-bleu-deep)); }
.photo::before { content: ''; position: absolute; inset: 18px; border: 1px solid rgba(46,45,122,0.14); }
.photo.dark::before { border-color: rgba(255,255,255,0.18); }
.photo span { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(46,45,122,0.4); text-align: center; padding: 1rem; line-height: 1.7; z-index: 1; }
.photo.dark span { color: rgba(255,255,255,0.55); }
.photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-out); }
.photo-zoom:hover img { transform: scale(1.04); }

/* ── EDITORIAL SECTION HEAD ── */
.sec-head { display: grid; grid-template-columns: 0.34fr 0.66fr; gap: clamp(1.5rem,4vw,3rem); align-items: start; }
@media (max-width: 760px){ .sec-head { grid-template-columns: 1fr; gap: 1rem; } }
.sec-num { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.2em; color: var(--tqe-or-deep); }
.sec-num::before { content: ''; display: inline-block; width: 34px; height: 1px; background: var(--tqe-or); vertical-align: middle; margin-right: 0.9rem; }
.section-title { font-weight: 200; color: var(--tqe-bleu); font-size: clamp(2rem, 4.4vw, 3.6rem); line-height: 1.08; letter-spacing: -0.015em; margin: 0; }
.section-title em { font-style: italic; font-weight: 300; color: var(--tqe-or-deep); }
.section-body { font-size: 1.2rem; font-weight: 300; line-height: 1.85; color: var(--tqe-ink-soft); margin: 1.75rem 0 0; max-width: 60ch; }
.eyebrow-lbl { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--tqe-stone); }

/* ── PILIERS ── */
.piliers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem 2.5rem; margin-top: 5rem; }
@media (max-width: 860px){ .piliers { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .piliers { grid-template-columns: 1fr; } }
.pilier { padding-top: 1.75rem; border-top: 1px solid var(--tqe-bleu-300); }
.pilier-num { font-weight: 200; font-size: 2.6rem; color: var(--tqe-or); line-height: 1; letter-spacing: -0.02em; }
.pilier-title { font-weight: 400; font-size: 1.22rem; color: var(--tqe-bleu); margin: 1.1rem 0 0.8rem; }
.pilier-body { font-size: 1rem; font-weight: 300; line-height: 1.7; color: var(--tqe-ink-soft); margin: 0; }

/* ── MANIFESTO (navy full-bleed) ── */
.manifesto { background: var(--tqe-bleu); color: #fff; text-align: center; padding: clamp(6rem,12vw,11rem) 0; position: relative; overflow: hidden; }
.manifesto::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 80% at 50% 0%, rgba(227,169,119,0.16), transparent 60%); }
.manifesto .qmark { font-family: var(--font-script); font-size: 7rem; line-height: 0.3; color: var(--tqe-or); display: block; height: 3.2rem; position: relative; }
.manifesto .q { position: relative; font-weight: 200; font-style: italic; font-size: clamp(1.6rem, 3.4vw, 2.9rem); line-height: 1.4; color: #fff; max-width: 980px; margin: 1.75rem auto; letter-spacing: -0.01em; }
.manifesto .attr { position: relative; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--tqe-or-light); }

/* ── NADÈGE ── */
.portrait-section { background: #fff; }
.portrait-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(2.5rem,6vw,6rem); align-items: center; }
@media (max-width: 860px){ .portrait-grid { grid-template-columns: 1fr; } }
.portrait-img { aspect-ratio: 4/5; }
.tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2.25rem; }
.tag { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.08em; color: var(--tqe-bleu); border: 1px solid var(--tqe-sand); border-radius: 999px; padding: 0.55rem 1.2rem; }

/* ── GALLERY ── */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; background: #fff; padding-bottom: 0; }
@media (max-width: 760px){ .gallery { grid-template-columns: 1fr 1fr; } }
.gallery .photo { aspect-ratio: 3/4; min-height: 0; }

/* ── NIVEAUX ── */
.niveaux-section { background: var(--tqe-ivoire); }
.niveaux { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 5rem; }
@media (max-width: 760px){ .niveaux { grid-template-columns: 1fr; } }
.niveau { background: #fff; border: 1px solid var(--tqe-sand); padding: 3rem 2.25rem; transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out); }
.niveau:hover { transform: translateY(-6px); box-shadow: 0 34px 60px -34px rgba(46,45,122,0.3); }
.niveau-num { font-weight: 200; font-size: 3rem; color: var(--tqe-or); line-height: 1; letter-spacing: -0.02em; }
.niveau-name { font-weight: 300; font-size: 2rem; color: var(--tqe-bleu); margin: 1rem 0 1.25rem; letter-spacing: -0.01em; }
.niveau-rule { width: 40px; height: 1px; background: var(--tqe-or); margin: 0 0 1.5rem; }
.niveau-intent { font-weight: 400; font-size: 1.06rem; line-height: 1.55; color: var(--tqe-ink); margin: 0 0 1rem; }
.niveau-who { font-size: 0.98rem; font-weight: 300; line-height: 1.7; color: var(--tqe-ink-soft); margin: 0; }

/* ── FORMAT / TIMELINE ── */
.format-section { background: #fff; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; margin-top: 5rem; }
@media (max-width: 860px){ .timeline { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .timeline { grid-template-columns: 1fr; } }
.tl-item { position: relative; padding-top: 2.25rem; border-top: 1px solid var(--tqe-sand); }
.tl-dot { position: absolute; top: -5px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--tqe-or); }
.tl-label { font-size: 0.64rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--tqe-or-deep); margin-bottom: 0.7rem; }
.tl-title { font-weight: 400; font-size: 1.18rem; color: var(--tqe-bleu); margin-bottom: 0.7rem; }
.tl-desc { font-size: 0.98rem; font-weight: 300; line-height: 1.65; color: var(--tqe-ink-soft); margin: 0; }

/* ── TARIFS ── */
.tarifs-section { background: var(--tqe-ivoire); }
.tarifs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 5rem; }
@media (max-width: 860px){ .tarifs { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .tarifs { grid-template-columns: 1fr; } }
.tarif { background: #fff; border: 1px solid var(--tqe-sand); padding: 2.5rem 1.75rem; display: flex; flex-direction: column; transition: transform 0.4s var(--ease-out); }
.tarif:hover { transform: translateY(-4px); }
.tarif.featured { border: 1px solid var(--tqe-or); box-shadow: 0 30px 60px -34px rgba(46,45,122,0.32); position: relative; }
.tarif.featured::before { content: 'Recommandé'; position: absolute; top: -1px; right: 1.5rem; transform: translateY(-50%); background: var(--tqe-or); color: var(--tqe-bleu-deep); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.4rem 0.9rem; border-radius: 999px; }
.tarif-badge { font-size: 0.64rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tqe-or-deep); margin-bottom: 1.5rem; }
.tarif-price { font-weight: 200; font-size: 2.7rem; color: var(--tqe-bleu); line-height: 1; letter-spacing: -0.02em; }
.tarif-price small { font-weight: 400; font-size: 0.75rem; color: var(--tqe-stone); letter-spacing: 0.04em; display: block; margin-bottom: 0.4rem; }
.tarif-name { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tqe-ink); margin: 1.1rem 0; }
.tarif-desc { font-size: 0.94rem; font-weight: 300; line-height: 1.6; color: var(--tqe-ink-soft); margin: 0 0 1.5rem; }
.tarif-cta { margin-top: auto; }

/* ── INTERNATIONAL ── */
.intl-section { background: #fff; }
.intl-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem,6vw,6rem); align-items: center; }
@media (max-width: 860px){ .intl-grid { grid-template-columns: 1fr; } }
.intl-img { aspect-ratio: 5/6; }
.markets { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2.25rem; }
.market { font-size: 0.8rem; font-weight: 400; letter-spacing: 0.03em; color: var(--tqe-bleu); border: 1px solid var(--tqe-sand); border-radius: 999px; padding: 0.55rem 1.2rem; }

/* ── FOOTER ── */
footer { background: var(--tqe-bleu); color: rgba(255,255,255,0.65); padding: clamp(4.5rem,9vw,7rem) 0 3.5rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.14); }
@media (max-width: 760px){ .footer-top { grid-template-columns: 1fr; gap: 2rem; } }
.footer-logo img { height: 78px; filter: brightness(0) invert(1); opacity: 0.96; margin-bottom: 1.5rem; }
.footer-tag { font-weight: 200; font-style: italic; font-size: 1.3rem; color: #fff; margin: 0; }
.footer-tag em { font-style: italic; color: var(--tqe-or-light); }
.footer-col h5 { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--tqe-or-light); margin: 0 0 1.1rem; }
.footer-col a, .footer-col p { display: block; font-size: 0.92rem; font-weight: 300; color: rgba(255,255,255,0.75); text-decoration: none; margin: 0 0 0.7rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding-top: 2.5rem; }
.footer-bottom span { font-size: 0.74rem; font-weight: 300; letter-spacing: 0.04em; color: rgba(255,255,255,0.45); }

/* ── ANIMATIONS ──
   Transform-only entrances (no opacity) so content is NEVER hidden if
   a host freezes CSS animations at frame 0 — it just sits un-offset.
   Real browsers still get the smooth slide-up + scroll reveal. */
@keyframes slideUp { from { transform: translateY(28px); } to { transform: none; } }
.hero-kicker, .hero h1, .hero-sub, .hero-actions, .hero-foot { animation: slideUp 0.9s var(--ease-out) both; }
.hero h1 { animation-delay: 0.12s; }
.hero-sub { animation-delay: 0.28s; }
.hero-actions { animation-delay: 0.44s; }
.hero-foot { animation-delay: 0.58s; }

.reveal.anim { transform: translateY(30px); }
.reveal.anim.visible { transform: none; transition: transform 0.8s var(--ease-out); }
.reveal.anim.d1 { transition-delay: 0.1s; }
.reveal.anim.d2 { transition-delay: 0.2s; }
.reveal.anim.d3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce){
  .hero-kicker, .hero h1, .hero-sub, .hero-actions, .hero-foot { animation: none; }
  .reveal.anim, .reveal.anim.visible { transform: none; transition: none; }
}

/* ============================================================
   V3 — Nouvelles sections (Concept / Nadège / Expériences / FAQ / Contact)
   ============================================================ */

/* ── Intro / constat lead ── */
.lead { font-weight: 200; font-style: italic; font-size: clamp(1.4rem, 2.6vw, 2.1rem); line-height: 1.45; color: var(--tqe-bleu); max-width: 30ch; letter-spacing: -0.01em; margin: 0; }
.lead-body { font-size: 1.12rem; font-weight: 300; line-height: 1.85; color: var(--tqe-ink-soft); margin: 1.5rem 0 0; max-width: 56ch; }

/* ── Definition block (Concept Bloc 1) ── */
.def-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem,6vw,5.5rem); align-items: center; margin-top: 5.5rem; }
@media (max-width: 860px){ .def-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.def-pull { border-left: 1px solid var(--tqe-or); padding-left: 2rem; }
.def-pull p { font-weight: 200; font-style: italic; font-size: clamp(1.3rem,2.2vw,1.8rem); line-height: 1.5; color: var(--tqe-bleu); margin: 0; letter-spacing: -0.01em; }

/* ── Checklist (Concept Bloc 2) ── */
.clist { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.clist li { display: flex; gap: 1.4rem; align-items: baseline; padding: 1.6rem 0; border-top: 1px solid var(--tqe-sand); font-size: 1.12rem; font-weight: 300; line-height: 1.55; color: var(--tqe-ink); }
.clist li:last-child { border-bottom: 1px solid var(--tqe-sand); }
.clist .ci-num { flex: none; font-family: var(--font-sans); font-weight: 400; font-size: 0.78rem; letter-spacing: 0.1em; color: var(--tqe-or-deep); width: 1.4rem; padding-top: 0.35rem; }

/* ── Generic 3-up values ── */
.valeurs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 5rem; }
@media (max-width: 760px){ .valeurs { grid-template-columns: 1fr; } }
.valeur { padding-top: 1.75rem; border-top: 1px solid var(--tqe-bleu-300); }
.valeur-k { font-weight: 400; font-size: 1.18rem; color: var(--tqe-bleu); margin: 0 0 0.9rem; letter-spacing: -0.005em; }
.valeur-b { font-size: 1rem; font-weight: 300; line-height: 1.75; color: var(--tqe-ink-soft); margin: 0; }

/* ── Forces (4 mots) ── */
.forces { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2.5rem; }
.force { font-size: 0.84rem; font-weight: 500; letter-spacing: 0.06em; color: var(--tqe-bleu); border: 1px solid var(--tqe-sand); border-radius: 999px; padding: 0.6rem 1.4rem; }

/* ── Territoires (5 onglets) ── */
.terr { display: grid; grid-template-columns: 0.34fr 0.66fr; gap: clamp(2rem,5vw,4rem); margin-top: 5rem; align-items: start; }
@media (max-width: 800px){ .terr { grid-template-columns: 1fr; gap: 2rem; } }
.terr-tabs { display: flex; flex-direction: column; gap: 0; border-left: 1px solid var(--tqe-sand); }
@media (max-width: 800px){ .terr-tabs { flex-direction: row; flex-wrap: wrap; border-left: none; gap: 0.6rem; } }
.terr-tab { appearance: none; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font-sans); padding: 1.15rem 0 1.15rem 1.6rem; margin-left: -1px; border-left: 1px solid transparent; color: var(--tqe-stone); transition: all 0.3s var(--ease-out); display: flex; flex-direction: column; gap: 0.3rem; }
.terr-tab .tt-name { font-weight: 400; font-size: 1.2rem; letter-spacing: -0.005em; transition: color 0.3s; }
.terr-tab .tt-word { font-style: italic; font-weight: 300; font-size: 0.86rem; color: var(--tqe-or-deep); opacity: 0; transition: opacity 0.3s; }
.terr-tab:hover .tt-name { color: var(--tqe-bleu); }
.terr-tab.active { border-left-color: var(--tqe-or); }
.terr-tab.active .tt-name { color: var(--tqe-bleu); }
.terr-tab.active .tt-word { opacity: 1; }
@media (max-width: 800px){ .terr-tab { padding: 0.7rem 1.2rem; border: 1px solid var(--tqe-sand); border-radius: 999px; flex-direction: row; align-items: center; gap: 0.6rem; margin-left: 0; } .terr-tab.active { border-color: var(--tqe-or); background: var(--tqe-or-100); } .terr-tab .tt-word { display: none; } }
.terr-panels { position: relative; }
.terr-panel { display: none; }
.terr-panel.active { display: block; animation: fadeUp 0.5s var(--ease-out) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.terr-panel .tp-word { font-family: var(--font-script); font-size: 2.4rem; color: var(--tqe-or-deep); line-height: 1; margin-bottom: 1.5rem; }
.terr-panel .tp-role { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--tqe-bleu-300); margin-bottom: 1rem; }
.terr-panel p { font-size: 1.12rem; font-weight: 300; line-height: 1.85; color: var(--tqe-ink-soft); margin: 0 0 1.2rem; max-width: 56ch; }

/* ── Conviction (navy reprise) — reuse .manifesto ── */

/* ── Expériences ── */
.experiences-section { background: var(--tqe-ivoire); }
.exp-hero { margin-top: 5rem; background: var(--tqe-bleu); color: #fff; border-radius: 2px; padding: clamp(2.5rem,5vw,4.5rem); position: relative; overflow: hidden; }
.exp-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 90% at 88% 0%, rgba(227,169,119,0.16), transparent 60%); pointer-events: none; }
.exp-hero-top { position: relative; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.exp-star { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--tqe-bleu-deep); background: var(--tqe-or); border-radius: 999px; padding: 0.45rem 1.1rem; }
.exp-hero-num { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; color: var(--tqe-or-light); }
.exp-hero h3 { position: relative; font-weight: 200; font-size: clamp(2rem,4vw,3.2rem); line-height: 1.08; letter-spacing: -0.015em; color: #fff; margin: 0 0 1.5rem; }
.exp-hero h3 em { font-style: italic; color: var(--tqe-or-light); }
.exp-hero-lead { position: relative; font-size: 1.1rem; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.82); max-width: 60ch; margin: 0 0 2.5rem; }
.exp-hero-cols { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,3.5rem); padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.16); }
@media (max-width: 760px){ .exp-hero-cols { grid-template-columns: 1fr; gap: 2rem; } }
.exp-hero-cols h6 { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--tqe-or-light); margin: 0 0 1.25rem; }
.exp-hero-cols ul { list-style: none; margin: 0; padding: 0; }
.exp-hero-cols li { font-size: 0.98rem; font-weight: 300; line-height: 1.6; color: rgba(255,255,255,0.85); padding: 0.55rem 0 0.55rem 1.4rem; position: relative; }
.exp-hero-cols li::before { content: ''; position: absolute; left: 0; top: 1.05rem; width: 7px; height: 1px; background: var(--tqe-or); }
.exp-hero-foot { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; margin-top: 2.75rem; }
.exp-hero-price { display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.exp-hero-price .p-now { font-weight: 200; font-size: 2.4rem; color: #fff; letter-spacing: -0.02em; }
.exp-hero-price .p-eb { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tqe-bleu-deep); background: var(--tqe-or); border-radius: 999px; padding: 0.4rem 0.9rem; }
.exp-hero-price .p-note { font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.6); }
.btn-light { background: #fff; color: var(--tqe-bleu); }
.btn-light:hover { background: var(--tqe-or); color: var(--tqe-bleu-deep); transform: translateY(-2px); }
.exp-hero-meta { position: relative; display: flex; flex-wrap: wrap; gap: 1.6rem; margin: 0 0 0.25rem; }
.exp-hero-meta span { font-size: 0.82rem; font-weight: 400; letter-spacing: 0.04em; color: rgba(255,255,255,0.85); }
.exp-hero-meta span strong { font-weight: 600; color: #fff; }

.exp-group-label { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tqe-or-deep); margin: clamp(4rem,8vw,6.5rem) 0 2.5rem; display: flex; align-items: center; gap: 1rem; }
.exp-group-label::after { content: ''; flex: 1; height: 1px; background: var(--tqe-sand); }
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 760px){ .exp-grid { grid-template-columns: 1fr; } }
.exp-card { background: #fff; border: 1px solid var(--tqe-sand); border-radius: 2px; padding: clamp(2rem,3.5vw,2.75rem); display: flex; flex-direction: column; transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s; }
.exp-card:hover { transform: translateY(-5px); box-shadow: 0 34px 60px -34px rgba(46,45,122,0.28); border-color: var(--tqe-or); }
.exp-card-top { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.25rem; }
.exp-card-num { font-weight: 200; font-size: 2rem; color: var(--tqe-or); line-height: 1; letter-spacing: -0.02em; }
.exp-card-price { margin-left: auto; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; color: var(--tqe-bleu); }
.exp-card h4 { font-weight: 400; font-size: 1.35rem; color: var(--tqe-bleu); margin: 0 0 0.5rem; line-height: 1.2; letter-spacing: -0.01em; }
.exp-card-meta { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--tqe-stone); margin: 0 0 1.1rem; }
.exp-card p { font-size: 1rem; font-weight: 300; line-height: 1.7; color: var(--tqe-ink-soft); margin: 0 0 1.75rem; }
.exp-card .link-arrow { margin-top: auto; }

/* ── Thématiques ── */
.themes-section { background: #fff; }
.themes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 5rem; }
@media (max-width: 760px){ .themes { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px){ .themes { grid-template-columns: 1fr; } }
.theme { border-top: 1px solid var(--tqe-bleu-300); padding-top: 1.5rem; }
.theme-k { font-weight: 400; font-size: 1.18rem; color: var(--tqe-bleu); margin: 0 0 0.5rem; letter-spacing: -0.005em; }
.theme-b { font-size: 0.95rem; font-weight: 300; line-height: 1.6; color: var(--tqe-ink-soft); margin: 0; }

/* ── FAQ ── */
.faq-section { background: var(--tqe-ivoire); }
.faq-wrap { display: grid; grid-template-columns: 0.34fr 0.66fr; gap: clamp(2rem,5vw,4rem); align-items: start; margin-top: 4rem; }
@media (max-width: 800px){ .faq-wrap { grid-template-columns: 1fr; gap: 2.5rem; } }
.faq-nav { display: flex; flex-direction: column; gap: 0.2rem; position: sticky; top: 110px; }
@media (max-width: 800px){ .faq-nav { position: static; flex-direction: row; flex-wrap: wrap; gap: 0.5rem; } }
.faq-nav a { font-size: 0.86rem; font-weight: 400; letter-spacing: 0.01em; color: var(--tqe-ink-soft); text-decoration: none; padding: 0.55rem 0; border-bottom: 1px solid transparent; transition: color 0.25s; }
.faq-nav a:hover { color: var(--tqe-bleu); }
@media (max-width: 800px){ .faq-nav a { border: 1px solid var(--tqe-sand); border-radius: 999px; padding: 0.5rem 1.1rem; } }
.faq-group { margin-bottom: 3.5rem; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group-title { font-weight: 300; font-size: 1.5rem; color: var(--tqe-bleu); margin: 0 0 1rem; letter-spacing: -0.01em; }
.faq-item { border-top: 1px solid var(--tqe-sand); }
.faq-item:last-child { border-bottom: 1px solid var(--tqe-sand); }
.faq-q { list-style: none; cursor: pointer; display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; padding: 1.4rem 0; font-family: var(--font-sans); font-size: 1.08rem; font-weight: 400; color: var(--tqe-bleu); line-height: 1.45; transition: color 0.25s; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { content: ''; }
.faq-q:hover { color: var(--tqe-or-deep); }
.faq-icon { flex: none; width: 18px; height: 18px; position: relative; margin-top: 0.3rem; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--tqe-or-deep); transition: transform 0.3s var(--ease-out), opacity 0.3s; }
.faq-icon::before { left: 0; top: 8px; width: 18px; height: 1.5px; }
.faq-icon::after { left: 8px; top: 0; width: 1.5px; height: 18px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a-inner { font-size: 1rem; font-weight: 300; line-height: 1.75; color: var(--tqe-ink-soft); padding: 0 0 1.5rem; max-width: 64ch; }
.faq-item[open] .faq-a-inner { animation: fadeUp 0.4s var(--ease-out) both; }

/* ── Contact ── */
.contact-section { background: var(--tqe-bleu); color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(2.5rem,6vw,6rem); align-items: center; }
@media (max-width: 860px){ .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.contact-section .sec-num { color: var(--tqe-or-light); }
.contact-section .sec-num::before { background: var(--tqe-or); }
.contact-section .section-title { color: #fff; }
.contact-section .section-title em { color: var(--tqe-or-light); }
.contact-lead { font-size: 1.2rem; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.82); margin: 1.75rem 0 0; max-width: 48ch; }
.contact-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.16); border-radius: 2px; padding: clamp(2rem,4vw,3rem); }
.contact-row { display: block; padding: 1.3rem 0; border-bottom: 1px solid rgba(255,255,255,0.14); text-decoration: none; transition: color 0.25s; }
.contact-row:last-child { border-bottom: none; }
.contact-row .cr-label { display: block; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tqe-or-light); margin-bottom: 0.4rem; }
.contact-row .cr-value { display: block; font-size: 1.18rem; font-weight: 300; color: #fff; letter-spacing: -0.005em; }
a.contact-row:hover .cr-value { color: var(--tqe-or-light); }

/* ============================================================
   V3 — Multi-pages : seuil d'accueil, en-têtes de page, pagination
   ============================================================ */

/* ── Seuil (page d'accueil sobre + aperçu) ── */
.seuil { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 9rem clamp(1.5rem,5vw,5.5rem) 5rem; }
.seuil-logo { margin-bottom: clamp(2rem,5vw,3.25rem); animation: slideUp 0.9s var(--ease-out) both; }
/* Taille du logo : volontairement NON contrainte ici. À régler dans Elementor
   (widget Image → onglet Contenu/Style → Largeur). On ne garde que la marge
   et l'animation du wrapper. */
.seuil-kicker { display: inline-flex; align-items: center; gap: 1rem; margin-bottom: 2.25rem; animation: slideUp 0.9s 0.1s var(--ease-out) both; }
.seuil-kicker .line { width: 40px; height: 1px; background: var(--tqe-or); }
.seuil-kicker span { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--tqe-or-deep); }
.seuil h1 { font-weight: 200; font-size: clamp(2.8rem,7vw,6rem); line-height: 1.0; letter-spacing: -0.02em; color: var(--tqe-bleu); margin: 0; animation: slideUp 0.9s 0.18s var(--ease-out) both; }
.seuil h1 em { font-style: italic; font-weight: 300; color: var(--tqe-or-deep); }
.seuil-vision { font-size: clamp(1.05rem,1.5vw,1.3rem); font-weight: 300; line-height: 1.75; color: var(--tqe-ink-soft); max-width: 52ch; margin: 2.5rem 0 0; animation: slideUp 0.9s 0.3s var(--ease-out) both; }
.seuil-actions { margin-top: 3rem; display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: center; align-items: center; animation: slideUp 0.9s 0.42s var(--ease-out) both; }
.seuil-cards { display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem; width: 100%; max-width: 1120px; margin-top: clamp(3.5rem,7vw,5.5rem); animation: slideUp 0.9s 0.54s var(--ease-out) both; }
@media (max-width: 900px){ .seuil-cards { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px){ .seuil-cards { grid-template-columns: 1fr; } }
.seuil-card { text-align: left; text-decoration: none; background: var(--tqe-white); border: 1px solid var(--tqe-sand); border-radius: 2px; padding: 1.5rem 1.4rem 1.4rem; display: flex; flex-direction: column; gap: 0.5rem; min-height: 150px; transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s; }
.seuil-card:hover { transform: translateY(-5px); box-shadow: 0 28px 50px -30px rgba(46,45,122,0.3); border-color: var(--tqe-or); }
.seuil-card .sc-num { font-family: var(--font-sans); font-weight: 200; font-size: 1.6rem; color: var(--tqe-or); line-height: 1; }
.seuil-card .sc-name { font-weight: 400; font-size: 1.05rem; color: var(--tqe-bleu); letter-spacing: -0.005em; line-height: 1.25; margin-top: auto; }
.seuil-card .sc-arrow { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; color: var(--tqe-ink-soft); transition: color 0.25s; }
.seuil-card:hover .sc-arrow { color: var(--tqe-or-deep); }

/* ── En-tête de page intérieure ── */
.pagehead { padding: clamp(8rem,14vw,11rem) 0 clamp(2.5rem,6vw,4.5rem); border-bottom: 1px solid var(--tqe-sand); }
.pagehead .wrap { max-width: 1320px; }
.pagehead-num { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.2em; color: var(--tqe-or-deep); display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.75rem; }
.pagehead-num::before { content: ''; width: 34px; height: 1px; background: var(--tqe-or); display: inline-block; }
.pagehead h1 { font-weight: 200; font-size: clamp(2.6rem,6vw,5rem); line-height: 1.02; letter-spacing: -0.02em; color: var(--tqe-bleu); margin: 0; max-width: 20ch; }
.pagehead h1 em { font-style: italic; font-weight: 300; color: var(--tqe-or-deep); }
.pagehead-lead { font-size: clamp(1.1rem,1.5vw,1.3rem); font-weight: 300; line-height: 1.8; color: var(--tqe-ink-soft); max-width: 60ch; margin: 2rem 0 0; }

/* ── Pagination bas de page (feuillet → feuillet) ── */
.pagenav { border-top: 1px solid var(--tqe-sand); background: var(--tqe-white); }
.pagenav .wrap { display: flex; justify-content: space-between; align-items: stretch; gap: 1.5rem; padding-top: clamp(2.5rem,5vw,3.5rem); padding-bottom: clamp(2.5rem,5vw,3.5rem); }
.pagenav a { text-decoration: none; display: flex; flex-direction: column; gap: 0.5rem; max-width: 48%; transition: opacity 0.25s; }
.pagenav a.pn-next { text-align: right; align-items: flex-end; margin-left: auto; }
.pagenav .pn-label { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--tqe-stone); }
.pagenav .pn-title { font-weight: 300; font-size: clamp(1.2rem,2vw,1.6rem); color: var(--tqe-bleu); letter-spacing: -0.01em; transition: color 0.25s; }
.pagenav a:hover .pn-title { color: var(--tqe-or-deep); }

/* nav active state (multi-page) */
.nav-links a.current::after { width: 100%; }
