/*
Theme Name: CS conseil
Theme URI: https://github.com/automattic/underscores
Author: Underscores.me
Author URI: https://underscores.me/
Description: CS Conseil en Image — custom theme based on Underscores
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: cs-conseil
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ===========================================================
   0. RESET & VARIABLES
   =========================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --black: oklch(12% 0.02 45);
    --ivory: oklch(97% 0.012 75);
    --ivory-deep: oklch(93% 0.018 75);
    --ivory-warm: oklch(96% 0.022 75);
    --gold: oklch(70% 0.13 78);
    --gold-light: oklch(87% 0.07 78);
    --gold-pale: oklch(96% 0.03 78);
    --text: oklch(18% 0.02 45);
    --text-light: oklch(50% 0.015 45);
    --pro-dark: oklch(12% 0.008 260);
    --pro-surface: oklch(22% 0.01 260);
    --ff-serif: "Cormorant Garamond", Georgia, serif;
    --ff-sans: "DM Sans", Helvetica, sans-serif;
    --shadow: 0 4px 24px rgba(197, 150, 58, 0.07);
    --shadow-lg: 0 12px 48px rgba(197, 150, 58, 0.13);
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--ff-sans);
    background: var(--ivory);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
::selection {
    background: var(--gold-light);
    color: var(--black);
}
img {
    display: block;
    width: 100%;
    object-fit: cover;
}
a {
    text-decoration: none;
    color: inherit;
}
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-track {
    background: var(--ivory-deep);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 2px;
}

/* ===========================================================
   1. ATOMS
   =========================================================== */
.tag {
    display: inline-block;
    font-family: var(--ff-sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--gold);
}
.gold-line {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 16px 0;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ===========================================================
   2. BUTTONS
   =========================================================== */
.btn {
    display: inline-block;
    font-family: var(--ff-sans);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 14px 32px;
    border: 1.5px solid;
    transition: all 0.25s;
    cursor: pointer;
    white-space: nowrap;
}
/* Bouton primaire — fond doré */
.btn-dark,
.btn-gold {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}
.btn-dark:hover,
.btn-gold:hover {
    background: transparent;
    color: var(--gold);
}
/* Bouton secondaire — transparent + bordure dorée */
.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}
/* Bouton sur fond sombre (si encore utilisé) */
.btn-ivory {
    background: transparent;
    color: var(--ivory);
    border-color: rgba(255, 255, 255, 0.35);
}
.btn-ivory:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--ivory);
}
.btn-sm {
    font-size: 11px;
    padding: 11px 24px;
}

/* ===========================================================
   3. NAVIGATION (shared — all templates)
   =========================================================== */
#site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: rgba(251, 248, 243, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition:
        background 0.4s,
        border-color 0.4s,
        box-shadow 0.4s;
}
#site-nav.scrolled {
    background: var(--ivory);
    border-color: rgba(197, 150, 58, 0.15);
    box-shadow: 0 2px 24px rgba(197, 150, 58, 0.07);
}

/* Nav inner container (taxonomy / archive / single) */
.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo — split variant (taxonomy / archive / single) */
.nav-logo {
    line-height: 1;
}
.nav-logo img {
    width: 50px;
}
.nav-logo-cs {
    font-family: var(--ff-serif);
    font-size: 26px;
    font-weight: 300;
    color: var(--text);
    letter-spacing: 0.06em;
}
.nav-logo-sub {
    font-family: var(--ff-sans);
    font-size: 9px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-top: 2px;
}

/* Logo — inline variant (contact / formations) */
.nav-logo.inline-logo {
    font-family: var(--ff-serif);
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--text);
}
.nav-logo.inline-logo em {
    color: var(--gold);
    font-style: italic;
}

/* Nav links */
.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}
.nav-link {
    font-family: var(--ff-sans);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--text-light);
    transition: color 0.2s;
}
.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}
/* Contact / formations use a > directly */
.nav-links a {
    font-family: var(--ff-sans);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}
/* CTA button */
.nav-cta {
    display: inline-block;
    font-family: var(--ff-sans);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 10px 22px;
    border: 1.5px solid var(--gold);
    background: var(--gold);
    color: var(--black);
    transition: all 0.25s;
}
.nav-cta:hover {
    background: transparent;
    color: var(--gold);
}

/* Hamburger toggle button */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition:
        transform 0.25s,
        opacity 0.25s,
        background 0.2s;
}
.nav-toggle.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}
#site-nav.scrolled .nav-toggle span {
    background: var(--text);
}

/* ===========================================================
   4. BREADCRUMB
   =========================================================== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-sans);
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.06em;
    margin-bottom: 24px;
}
.breadcrumb a {
    color: var(--text-light);
    transition: color 0.2s;
}
.breadcrumb a:hover {
    color: var(--gold);
}
.breadcrumb-sep {
    color: rgba(197, 150, 58, 0.4);
}
.breadcrumb-current {
    color: var(--gold);
}

/* ===========================================================
   5. ANCHOR NAV (taxonomy + archive)
   =========================================================== */
#anchor-nav {
    position: sticky;
    top: 72px;
    z-index: 200;
    background: var(--ivory);
    border-bottom: 1px solid rgba(197, 150, 58, 0.15);
    box-shadow: 0 2px 16px rgba(197, 150, 58, 0.06);
    transform: translateY(-100%);
    opacity: 0;
    transition:
        transform 0.35s,
        opacity 0.35s;
    pointer-events: none;
}
#anchor-nav.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}
.anchor-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    height: 52px;
    display: flex;
    align-items: center;
    gap: 32px;
}
.anchor-link {
    font-family: var(--ff-sans);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    transition: color 0.2s;
    white-space: nowrap;
}
.anchor-link:hover {
    color: var(--gold);
}
.anchor-sep {
    width: 1px;
    height: 16px;
    background: rgba(197, 150, 58, 0.2);
}

/* ===========================================================
   6. FAQ COMPONENT (shared by all pages)
   =========================================================== */
#faq {
    padding: 88px 0px;
}
.faq-layout {
    display: grid;
    grid-template-columns: 5fr 8fr;
    gap: 96px;
    align-items: start;
}
.faq-sidebar .tag {
    margin-bottom: 14px;
}
.faq-sidebar h2 {
    font-family: var(--ff-serif);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 300;
    color: var(--black);
    line-height: 1.15;
    margin-bottom: 20px;
}
.faq-sidebar h2 em {
    color: var(--gold);
    font-style: italic;
}
.faq-sidebar-line {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 20px 0;
}
.faq-sidebar p {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 28px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.faq-item {
    background: var(--ivory);
    border-top: 2px solid transparent;
    transition: border-color 0.25s;
}
.faq-item.open {
    border-color: var(--gold);
}
.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 26px 30px;
    cursor: pointer;
    font-family: var(--ff-serif);
    font-size: 19px;
    color: var(--black);
    font-weight: 400;
    line-height: 1.3;
    user-select: none;
    /* reset <button> defaults */
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    outline: none;
}
.faq-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(197, 150, 58, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
    transition:
        transform 0.3s,
        background 0.25s,
        color 0.25s;
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--gold);
    color: var(--black);
}
.faq-a {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.95;
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.45s ease,
        padding 0.4s ease;
}
.faq-item.open .faq-a {
    max-height: 400px;
    padding: 0 30px 28px;
}

/* Taxonomy variant (narrower grid) */
.faq-layout.faq-layout--wide {
    grid-template-columns: 1fr 2fr;
    gap: 80px;
}

/* ===========================================================
   7. AVIS COMPONENT (shared by all pages)
   =========================================================== */
.avis-header {
    text-align: center;
    margin-bottom: 64px;
}
.avis-header .tag {
    margin-bottom: 14px;
}
.avis-header h2 {
    font-family: var(--ff-serif);
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 300;
    color: var(--black);
    line-height: 1.1;
}
.avis-header h2 em {
    color: var(--gold);
    font-style: italic;
}
.avis-rating-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
}
.avis-stars {
    display: flex;
    gap: 4px;
}
.avis-score {
    font-family: var(--ff-serif);
    font-size: 40px;
    color: var(--gold);
    font-weight: 300;
    line-height: 1;
}
.avis-meta {
    text-align: left;
}
.avis-meta-count {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--black);
    font-weight: 500;
}
.avis-meta-label {
    font-family: var(--ff-sans);
    font-size: 11px;
    color: var(--text-light);
    margin-top: 2px;
}
.avis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 56px;
}
.avis-card {
    background: var(--ivory-deep);
    padding: 32px 28px;
    transition: all 0.25s;
    border-top: 2px solid transparent;
    box-shadow: var(--shadow);
}
.avis-card:hover {
    background: var(--ivory);
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
}
.avis-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}
.avis-card-stars {
    display: flex;
    gap: 3px;
}
.avis-type {
    font-family: var(--ff-sans);
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 4px 10px;
    border: 1px solid rgba(197, 150, 58, 0.28);
}
.avis-text {
    font-family: var(--ff-serif);
    font-size: 16px;
    color: var(--text);
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 20px;
}
.avis-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(197, 150, 58, 0.1);
}
.avis-nom {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--black);
    font-weight: 500;
}
.avis-poste {
    font-family: var(--ff-sans);
    font-size: 11px;
    color: var(--text-light);
    margin-top: 2px;
}
.avis-verifie {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--ff-sans);
    font-size: 9px;
    color: var(--text-light);
    letter-spacing: 0.06em;
}
.voir-avis {
    text-align: center;
    margin-top: 40px;
}
.voir-avis a {
    font-family: var(--ff-sans);
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(197, 150, 58, 0.2);
    padding-bottom: 2px;
    transition:
        color 0.2s,
        border-color 0.2s;
}
.voir-avis a:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* Séparateur avis (taxonomy + archive) */
.avis-sep {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}
.avis-sep-line {
    flex: 1;
    height: 1px;
    background: rgba(197, 150, 58, 0.15);
}
.avis-sep-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.avis-sep-stars {
    display: flex;
    gap: 4px;
}
.avis-sep-label {
    font-family: var(--ff-sans);
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ===========================================================
   8. FOOTER (shared)
   =========================================================== */
footer {
    background: var(--ivory-deep);
    padding: 64px 0 28px;
    border-top: 1px solid rgba(197, 150, 58, 0.15);
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}
.footer-logo-cs {
    font-family: var(--ff-serif);
    font-size: 28px;
    color: var(--text);
    font-weight: 300;
    line-height: 1;
}
.footer-logo-sub {
    font-family: var(--ff-sans);
    font-size: 9px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 2px;
    margin-bottom: 18px;
}
.footer-desc {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.85;
    max-width: 260px;
    margin-top: 20px;
}
.footer-col-title {
    font-family: var(--ff-sans);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}
.footer-link {
    display: block;
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
    transition: color 0.2s;
}
.footer-link:hover {
    color: var(--gold);
}
.footer-bottom {
    border-top: 1px solid rgba(197, 150, 58, 0.15);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-copy {
    font-family: var(--ff-sans);
    font-size: 11px;
    color: var(--text-light);
}
.footer-qualiopi {
    font-family: var(--ff-sans);
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 0.14em;
}

/* ===========================================================
   9. TAXONOMY — Public cible
   =========================================================== */
/* Hero (dark image) */
.taxonomy-public-cible #hero {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    /* max-height: 90svh; */
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: brightness(0.38); */
}
.hero-bg-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, transparent);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 140px 48px 80px;
    width: 100%;
}
.hero-text {
    max-width: 680px;
}
.hero-h1 {
    font-family: var(--ff-serif);
    font-weight: 300;
    color: var(--ivory);
    font-size: clamp(44px, 5vw, 78px);
    line-height: 1.06;
    margin-bottom: 6px;
}
.hero-h1 em {
    color: var(--gold);
    font-style: italic;
}
.hero-intro {
    font-family: var(--ff-sans);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.9;
    max-width: 600px;
    margin: 24px 0 40px;
    font-weight: 300;
}
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-stat {
    margin-top: 64px;
    display: flex;
    gap: 20px;
}
.hero-stat-item {
    border-left: 2px solid var(--gold);
    padding-left: 20px;
}
.hero-stat-n {
    font-family: var(--ff-serif);
    font-size: 36px;
    color: var(--ivory);
    font-weight: 300;
    line-height: 1;
}
.hero-stat-l {
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 4px;
}
.hero-badge {
    position: absolute;
    right: 48px;
    bottom: 48px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(197, 150, 58, 0.25);
    padding: 20px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.hero-badge-stars {
    display: flex;
    gap: 4px;
}
.hero-badge-label {
    font-family: var(--ff-sans);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
}

/* Intro section */
#intro {
    background: var(--ivory-warm);
    padding: 88px 0;
}
#listing {
    padding: 88px 0;
}
.intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
}
.intro-left .tag {
    margin-bottom: 14px;
}
.intro-left h2 {
    font-family: var(--ff-serif);
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 300;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 24px;
}
.intro-left h2 em {
    color: var(--gold);
    font-style: italic;
}
.intro-left p {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 16px;
}
.intro-certif {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    padding: 18px 24px;
    background: var(--ivory);
    border-left: 3px solid var(--gold);
}
.intro-certif-icon {
    color: var(--gold);
    flex-shrink: 0;
}
.intro-certif-text {
    font-family: var(--ff-sans);
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
}
.intro-certif-text strong {
    display: block;
    color: var(--black);
    font-size: 13px;
    margin-bottom: 2px;
}
.intro-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}
.intro-point {
    background: var(--ivory);
    padding: 28px 24px;
    border-top: 2px solid transparent;
    transition: border-color 0.25s;
}
.intro-point:hover {
    border-color: var(--gold);
}
.intro-point-n {
    font-family: var(--ff-serif);
    font-size: 36px;
    color: var(--gold);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 6px;
}
.intro-point h3 {
    font-family: var(--ff-serif);
    font-size: 16px;
    color: var(--black);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 8px;
}
.intro-point p {
    font-family: var(--ff-sans);
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.75;
}

/* Listing (taxonomy) */
.taxonomy-public-cible #listing {
    background: var(--ivory);
    padding: 96px 0;
}
.listing-header {
    margin-bottom: 56px;
}
.listing-header .tag {
    margin-bottom: 12px;
}
.listing-title {
    font-family: var(--ff-serif);
    font-size: clamp(32px, 3.5vw, 50px);
    font-weight: 300;
    color: var(--black);
    margin-top: 8px;
    line-height: 1.1;
}
.listing-title em {
    color: var(--gold);
    font-style: italic;
}
.listing-sub {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.85;
    max-width: 560px;
    margin-top: 14px;
}
.prestations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2px;
}
.pcard {
    background: var(--ivory-deep);
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}
.pcard:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}
.pcard-img {
    position: relative;
    overflow: hidden;
    height: 260px;
}
.pcard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.93);
    transition:
        filter 0.35s,
        transform 0.5s;
}
.pcard:hover .pcard-img img {
    filter: brightness(0.87);
    transform: scale(1.04);
}
.pcard-badge,
.pcard-public {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--ff-sans);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    color: var(--gold);
    padding: 5px 12px;
    font-weight: 500;
}
.pcard-body {
    padding: 28px 28px 32px;
}
.pcard-title {
    font-family: var(--ff-serif);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--black);
}
.pcard-excerpt {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 20px;
}
.pcard-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(197, 150, 58, 0.12);
    padding-top: 16px;
}
.pcard-prix {
    font-family: var(--ff-serif);
    font-size: 19px;
    color: var(--gold);
    font-style: italic;
}
.pcard-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--ff-sans);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    transition:
        gap 0.2s,
        opacity 0.2s;
}
.pcard-link:hover {
    gap: 10px;
    opacity: 0.7;
}
.listing-empty {
    text-align: center;
    padding: 80px 0;
    font-family: var(--ff-serif);
    font-size: 22px;
    color: var(--text-light);
    font-style: italic;
}

/* CTA + Avis (taxonomy) */
#cta-avis {
    background: var(--ivory-warm);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}
#cta-avis::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 64px;
    background: linear-gradient(to bottom, transparent, rgba(197, 150, 58, 0.4));
}
.cta-block {
    text-align: center;
    margin-bottom: 72px;
}
.cta-block .tag {
    margin-bottom: 16px;
}
.cta-block h2 {
    font-family: var(--ff-serif);
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 300;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 18px;
}
.cta-block h2 em {
    color: var(--gold);
    font-style: italic;
}
.cta-block p {
    font-family: var(--ff-sans);
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 40px;
}
.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================================================
   10. ARCHIVE — Toutes les prestations
   =========================================================== */
/* Hero (light) */
.archive-prestation #hero {
    background: var(--ivory-warm);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}
.archive-prestation #hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(197, 150, 58, 0.2), transparent);
}
.hero-deco {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 150, 58, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}
.archive-prestation .hero-h1 {
    font-family: var(--ff-serif);
    font-weight: 300;
    color: var(--text);
    font-size: clamp(44px, 5vw, 80px);
    line-height: 1.06;
    margin-bottom: 6px;
}
.archive-prestation .hero-h1 em {
    color: var(--gold);
    font-style: italic;
}
.archive-prestation .hero-intro {
    font-family: var(--ff-sans);
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.9;
    max-width: 600px;
    margin: 24px 0 48px;
    font-weight: 300;
}

/* Hero cards */
.hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 16px;
}
.hero-card {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
    transition: all 0.35s;
    cursor: pointer;
}
.hero-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.38);
    transition:
        filter 0.35s,
        transform 0.5s;
}
.hero-card:hover .hero-card-bg img {
    filter: brightness(0.28);
    transform: scale(1.04);
}
.hero-card-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 40%, transparent);
    z-index: 1;
}
.hero-card-body {
    position: relative;
    z-index: 2;
}
.hero-card-bar {
    width: 32px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 14px;
}
.hero-card-tag {
    font-family: var(--ff-sans);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}
.hero-card h2 {
    font-family: var(--ff-serif);
    font-size: clamp(22px, 2.5vw, 34px);
    color: var(--ivory);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 10px;
}
.hero-card h2 em {
    color: var(--gold);
    font-style: italic;
}
.hero-card p {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    margin-bottom: 20px;
}
.hero-card-link {
    font-family: var(--ff-sans);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}

/* Pourquoi section */
#pourquoi {
    background: var(--ivory-deep);
    padding: 88px 0;
}
.pourquoi-header {
    text-align: center;
    margin-bottom: 56px;
}
.pourquoi-header .tag {
    margin-bottom: 12px;
}
.pourquoi-title {
    font-family: var(--ff-serif);
    font-size: clamp(32px, 3.5vw, 50px);
    font-weight: 300;
    color: var(--black);
    line-height: 1.1;
}
.pourquoi-title em {
    color: var(--gold);
    font-style: italic;
}
.pourquoi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.pourquoi-card {
    background: var(--ivory);
    padding: 44px 36px;
    transition: all 0.3s;
    border-top: 2px solid transparent;
}
.pourquoi-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}
.pourquoi-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(197, 150, 58, 0.25);
    color: var(--gold);
}
.pourquoi-n {
    font-family: var(--ff-serif);
    font-size: 40px;
    color: var(--gold);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 8px;
}
.pourquoi-card h3 {
    font-family: var(--ff-serif);
    font-size: 22px;
    color: var(--black);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 12px;
}
.pourquoi-card p {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.85;
}

/* Listing + filtres (archive) */
.archive-prestation #listing {
    background: var(--ivory);
    padding: 96px 0;
}
.archive-prestation .listing-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 24px;
}
.filters {
    display: flex;
    gap: 2px;
    background: rgba(197, 150, 58, 0.08);
    padding: 3px;
}
.filter-btn {
    font-family: var(--ff-sans);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 11px 28px;
    border: none;
    cursor: pointer;
    background: transparent;
    color: var(--text-light);
    transition: all 0.22s;
}
.filter-btn.active {
    background: var(--gold);
    color: var(--black);
}
.filter-btn:not(.active):hover {
    background: var(--gold-pale);
    color: var(--text);
}
.prestations-grid[data-filter="professionnels"] .pcard[data-public="particuliers"],
.prestations-grid[data-filter="particuliers"] .pcard[data-public="professionnels"] {
    display: none;
}

/* ===========================================================
   11. SINGLE PRESTATION
   =========================================================== */
/* Sticky page nav */
#page-nav {
    position: sticky;
    top: 72px;
    z-index: 200;
    background: var(--ivory);
    border-bottom: 1px solid rgba(197, 150, 58, 0.15);
    box-shadow: 0 2px 12px rgba(197, 150, 58, 0.06);
    transform: translateY(-110%);
    opacity: 0;
    transition:
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.3s;
    pointer-events: none;
}
#page-nav.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}
.page-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.page-nav-links {
    display: flex;
    gap: 0;
    overflow: hidden;
}
.pnl {
    font-family: var(--ff-sans);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    padding: 0 20px;
    height: 52px;
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(197, 150, 58, 0.1);
    transition:
        color 0.2s,
        background 0.2s;
    white-space: nowrap;
}
.pnl:last-child {
    border-right: none;
}
.pnl:hover {
    color: var(--gold);
    background: var(--ivory-deep);
}
.pnl.active {
    color: var(--gold);
}
.page-nav-cta {
    font-family: var(--ff-sans);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 9px 22px;
    background: var(--gold);
    color: var(--black);
    border: 1.5px solid var(--gold);
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.page-nav-cta:hover {
    background: transparent;
    color: var(--gold);
}

/* Hero (single — 72vh grid) */
/* ── Single prestation : hero clair split-layout ─────────────────────── */
.single-prestation #hero {
    background: var(--ivory-warm);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    min-height: 82vh;
    overflow: hidden;
    position: relative;
}

/* Photo — colonne droite, pleine hauteur */
.single-prestation .hero-bg {
    grid-column: 2;
    grid-row: 1/3;
    position: relative;
    overflow: hidden;
}
.single-prestation .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    transition: transform 0.8s ease;
    max-height: 85svh;
}
.single-prestation #hero:hover .hero-bg img {
    transform: scale(1.03);
}

/* Gradient sombre supprimé sur fond clair */
.single-prestation .hero-bg-grad {
    display: none;
}

/* Breadcrumb — colonne gauche, rangée du haut */
.single-prestation .breadcrumb {
    position: static;
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-sans);
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.06em;
    padding: 36px 64px 0 48px;
}
.single-prestation .breadcrumb a {
    color: var(--text-light);
    transition: color 0.2s;
}
.single-prestation .breadcrumb a:hover {
    color: var(--text);
}
.single-prestation .breadcrumb-sep {
    color: rgba(197, 150, 58, 0.4);
}
.single-prestation .breadcrumb-current {
    color: var(--gold);
}

/* Contenu — colonne gauche, rangée du bas */
.single-prestation .hero-content {
    grid-column: 1;
    grid-row: 2;
    position: relative;
    z-index: 2;
    padding: 40px 64px 72px 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Badges */
.hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 8px 18px;
    border: 1px solid;
}
.hero-badge-pill.gold {
    color: var(--gold);
    border-color: rgba(197, 150, 58, 0.35);
    background: rgba(197, 150, 58, 0.06);
}
.hero-badge-pill.light {
    color: var(--text);
    border-color: rgba(197, 150, 58, 0.2);
    background: transparent;
}

/* Titres et textes sur fond clair */
.single-prestation .hero-h1 {
    font-family: var(--ff-serif);
    font-weight: 300;
    color: var(--text);
    font-size: clamp(40px, 5vw, 80px);
    line-height: 1.04;
    margin-bottom: 24px;
}
.single-prestation .hero-h1 em {
    color: var(--gold);
    font-style: italic;
}
.hero-sub {
    font-family: var(--ff-sans);
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.75;
    /* max-width: 520px; */
    margin: 12px 0 32px;
    font-weight: 300;
}
.hero-intro {
    font-family: var(--ff-sans);
    font-size: 14px;
    color: #fcfbfe;
    line-height: 1.9;
    max-width: 540px;
    margin-bottom: 48px;
    font-weight: 300;
    opacity: 0.75;
}

/* CTA + prix */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.hero-actions-sep {
    width: 1px;
    height: 40px;
    background: rgba(197, 150, 58, 0.2);
}
.hero-price-block {
    display: flex;
    flex-direction: column;
}
.hero-price-val {
    font-family: var(--ff-serif);
    font-size: 32px;
    color: var(--gold);
    font-weight: 300;
    font-style: italic;
    line-height: 1;
}
.hero-price-label {
    font-family: var(--ff-sans);
    font-size: 10px;
    color: var(--text-light);
    letter-spacing: 0.1em;
    margin-top: 4px;
}

/* Scroll cue */
.single-prestation .hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 48px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-sans);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    opacity: 0.5;
}
.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

/* Stats bar (single) */
#stats {
    background: var(--ivory-deep);
    border-bottom: 1px solid rgba(197, 150, 58, 0.12);
}
.stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid rgba(197, 150, 58, 0.08);
}
.stat-item {
    padding: 40px 32px;
    border-right: 1px solid rgba(197, 150, 58, 0.08);
    position: relative;
    transition: background 0.3s;
}
.stat-item:hover {
    background: var(--gold-pale);
}
.stat-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}
.stat-item:hover::before {
    transform: scaleX(1);
}
.stat-n {
    font-family: var(--ff-serif);
    font-size: clamp(36px, 4vw, 58px);
    color: var(--gold);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-l {
    font-family: var(--ff-sans);
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.1em;
    line-height: 1.5;
}

/* Définition */
#definition {
    background: var(--ivory);
    padding: 112px 0;
}
.def-layout {
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 96px;
    align-items: start;
}
.def-left .tag {
    margin-bottom: 20px;
}
.def-h2 {
    font-family: var(--ff-serif);
    font-size: clamp(30px, 3.5vw, 52px);
    font-weight: 300;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 28px;
}
.def-h2 em {
    color: var(--gold);
    font-style: italic;
}
.def-gold-line {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 28px;
}
.def-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.def-body p {
    font-family: var(--ff-sans);
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.95;
}
.def-body strong {
    color: var(--text);
    font-weight: 500;
}
.def-body-highlight {
    margin-top: 8px;
    padding: 20px 24px;
    background: var(--gold-pale);
    border-left: 3px solid var(--gold);
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.85;
}
.def-right {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: sticky;
    top: 140px;
}
.def-card {
    background: var(--ivory-deep);
    padding: 28px 28px;
    border-top: 2px solid transparent;
    transition:
        border-color 0.25s,
        background 0.25s;
}
.def-card:hover {
    border-color: var(--gold);
    background: var(--gold-pale);
}
.def-card-icon {
    color: var(--gold);
    margin-bottom: 12px;
}
.def-card-title {
    font-family: var(--ff-serif);
    font-size: 19px;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 8px;
    line-height: 1.2;
}
.def-card-text {
    font-family: var(--ff-sans);
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Pour qui */
#pour-qui {
    background: var(--ivory-warm);
    padding: 96px 0;
}
.pour-qui-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
    gap: 32px;
    flex-wrap: wrap;
}
.pour-qui-header .tag {
    display: block;
    margin-bottom: 12px;
}
.pour-qui-title {
    font-family: var(--ff-serif);
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 300;
    color: var(--black);
    line-height: 1.1;
}
.pour-qui-title em {
    color: var(--gold);
    font-style: italic;
}
.pour-qui-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.pq-card {
    background: var(--ivory);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    border-top: 2px solid transparent;
    transition: all 0.3s;
}
.pq-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
}
.pq-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s;
    transform-origin: left;
}
.pq-card:hover::after {
    transform: scaleX(1);
}
.pq-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(197, 150, 58, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 24px;
}
.pq-num {
    font-family: var(--ff-serif);
    font-size: 13px;
    color: rgba(197, 150, 58, 0.3);
    font-weight: 300;
    margin-bottom: 14px;
    letter-spacing: 0.06em;
}
.pq-title {
    font-family: var(--ff-serif);
    font-size: 22px;
    color: var(--black);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 14px;
}
.pq-text {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.85;
}

/* Programme */
#programme {
    background: var(--ivory-deep);
    padding: 112px 0;
}
.prog-header {
    text-align: center;
    margin-bottom: 80px;
}
.prog-header .tag {
    margin-bottom: 14px;
}
.prog-title {
    font-family: var(--ff-serif);
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 300;
    color: var(--black);
    line-height: 1.1;
}
.prog-title em {
    color: var(--gold);
    font-style: italic;
}
.prog-subtitle {
    font-family: var(--ff-sans);
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.85;
    max-width: 560px;
    margin: 18px auto 0;
}
.prog-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.prog-timeline::before {
    content: "";
    position: absolute;
    left: 64px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(197, 150, 58, 0.3) 10%, rgba(197, 150, 58, 0.3) 90%, transparent);
}
.prog-step {
    display: grid;
    grid-template-columns: 128px 1fr;
    gap: 0;
    position: relative;
}
.prog-step:not(:last-child) .prog-step-body {
    border-bottom: 1px solid rgba(197, 150, 58, 0.08);
}
.prog-step-num {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 0;
    position: relative;
}
.prog-step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--ivory-deep);
    border: 2px solid rgba(197, 150, 58, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-serif);
    font-size: 12px;
    color: var(--gold);
    font-weight: 400;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}
.prog-step:hover .prog-step-dot {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}
.prog-step-body {
    padding: 48px 0 48px 48px;
}
.prog-step-label {
    font-family: var(--ff-sans);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.prog-step-title {
    font-family: var(--ff-serif);
    font-size: clamp(22px, 2.5vw, 32px);
    color: var(--black);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 14px;
}
.prog-step-text {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.9;
    max-width: 700px;
}

/* CTA Formules */
#cta-formules {
    background: var(--ivory-deep);
    border-top: 1px solid rgba(197, 150, 58, 0.1);
    border-bottom: 1px solid rgba(197, 150, 58, 0.1);
}
.ctaf-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1280px;
    margin: 0 auto;
}
.ctaf-left {
    padding: 72px 64px;
    border-right: 1px solid rgba(197, 150, 58, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ctaf-right {
    padding: 72px 64px;
    background: var(--gold-pale);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ctaf-label {
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.ctaf-title {
    font-family: var(--ff-serif);
    font-size: clamp(26px, 3vw, 44px);
    font-weight: 300;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 18px;
}
.ctaf-title em {
    color: var(--gold);
    font-style: italic;
}
.ctaf-text {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 32px;
}
.ctaf-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-sans);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 15px 32px;
    background: var(--black);
    color: var(--ivory);
    border: 1.5px solid var(--black);
    transition: all 0.25s;
    align-self: flex-start;
}
.ctaf-btn:hover {
    background: transparent;
    color: var(--black);
}
.ctaf-btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.ctaf-btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}
.ctaf-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
}
.ctaf-stat-n {
    font-family: var(--ff-serif);
    font-size: 40px;
    color: var(--gold);
    font-weight: 300;
    line-height: 1;
}
.ctaf-stat-l {
    font-family: var(--ff-sans);
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.5;
    margin-top: 4px;
}

/* Formules */
#formules {
    background: var(--ivory);
    padding: 112px 0;
}
.formules-header {
    text-align: center;
    margin-bottom: 72px;
}
.formules-header .tag {
    margin-bottom: 14px;
}
.formules-title {
    font-family: var(--ff-serif);
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 300;
    color: var(--black);
    line-height: 1.1;
}
.formules-title em {
    color: var(--gold);
    font-style: italic;
}
.formules-subtitle {
    font-family: var(--ff-sans);
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.85;
    max-width: 520px;
    margin: 18px auto 0;
}
/* .formules-grid column count is set inline in PHP (dynamic) — default fallback: */
.formules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.formule-card {
    background: var(--ivory-deep);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.formule-card.populaire {
    background: var(--black);
}
.formule-card.populaire .formule-card-body {
    border-color: rgba(255, 255, 255, 0.06);
}
.formule-card:not(.populaire):hover {
    box-shadow: var(--shadow-lg);
}
.formule-pop-badge {
    position: absolute;
    top: 32px;
    right: -43px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--ff-sans);
    font-size: 9px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 5px 48px;
    transform: rotate(45deg);
}
.formule-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 24px 32px 0;
}
.formule-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--ff-sans);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 5px 12px;
    border: 1px solid;
}
.formule-badge.cadeau {
    color: var(--gold);
    border-color: rgba(197, 150, 58, 0.3);
    background: rgba(197, 150, 58, 0.05);
}
.formule-badge.financement {
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.25);
    background: rgba(34, 197, 94, 0.05);
}
.formule-badge-icon {
    font-size: 11px;
    line-height: 1;
}
.formule-card-head {
    padding: 32px 32px 28px;
}
.formule-cat {
    font-family: var(--ff-sans);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.formule-nom {
    font-family: var(--ff-serif);
    font-size: 28px;
    color: var(--text);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 20px;
}
.formule-card.populaire .formule-nom {
    color: var(--ivory);
}
.formule-prix {
    font-family: var(--ff-serif);
    font-size: clamp(36px, 4vw, 52px);
    color: var(--gold);
    font-weight: 300;
    font-style: italic;
    line-height: 1;
    margin-bottom: 6px;
}
.formule-duree {
    font-family: var(--ff-sans);
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.08em;
    margin-top: 10px;
}
.formule-card.populaire .formule-duree {
    color: rgba(255, 255, 255, 0.3);
}
.formule-card-body {
    padding: 24px 32px 32px;
    border-top: 1px solid rgba(197, 150, 58, 0.1);
    flex: 1;
    display: flex;
    flex-direction: column;
}
.formule-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    margin-bottom: 32px;
}
.formule-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}
.formule-card.populaire .formule-item {
    color: rgba(255, 255, 255, 0.5);
}
.formule-check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
    border: 1px solid rgba(197, 150, 58, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}
.formule-cta {
    display: block;
    text-align: center;
    font-family: var(--ff-sans);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 14px 24px;
    border: 1.5px solid;
    transition: all 0.25s;
}
.formule-cta-dark {
    background: var(--black);
    color: var(--ivory);
    border-color: var(--black);
}
.formule-cta-dark:hover {
    background: transparent;
    color: var(--black);
}
.formule-cta-gold {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}
.formule-cta-gold:hover {
    background: transparent;
    color: var(--gold);
}
.formule-cta-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.formule-cta-outline:hover {
    background: var(--gold);
    color: var(--black);
}
.formule-note {
    text-align: center;
    margin-top: 36px;
    font-family: var(--ff-sans);
    font-size: 12px;
    color: var(--text-light);
}
.formule-note a {
    color: var(--gold);
    border-bottom: 1px solid rgba(197, 150, 58, 0.3);
}

/* CTA mid (dark editorial) */
#cta-mid {
    background: var(--black);
    position: relative;
    overflow: hidden;
    padding: 0;
}
.cta-mid-noise {
    position: absolute;
    inset: 0;
    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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
    background-size: 200px;
    opacity: 0.6;
    pointer-events: none;
}
.cta-mid-line-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(197, 150, 58, 0.6) 30%, rgba(197, 150, 58, 0.6) 70%, transparent);
}
.cta-mid-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.cta-mid-left {
    padding: 80px 64px 80px 48px;
    border-right: 1px solid rgba(197, 150, 58, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cta-mid-right {
    padding: 80px 48px 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
}
.cta-mid-tag {
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 24px;
}
.cta-mid-headline {
    font-family: var(--ff-serif);
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 300;
    color: var(--ivory);
    line-height: 1;
    margin-bottom: 0;
}
.cta-mid-headline em {
    color: var(--gold);
    font-style: italic;
    display: block;
}
.cta-mid-gold-line {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 28px 0;
}
.cta-mid-sub {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: rgba(245, 240, 230, 0.55);
    line-height: 1.95;
    max-width: 420px;
}
.cta-mid-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cta-mid-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-sans);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: rgba(245, 240, 230, 0.5);
}
.cta-mid-badge-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}
.cta-mid-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.cta-mid-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 32px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--ff-sans);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    transition:
        background 0.25s,
        transform 0.25s;
}
.cta-mid-btn-primary:hover {
    background: oklch(76% 0.13 78);
    transform: translateX(3px);
}
.cta-mid-btn-arrow {
    font-size: 16px;
    transition: transform 0.25s;
}
.cta-mid-btn-primary:hover .cta-mid-btn-arrow {
    transform: translateX(4px);
}
.cta-mid-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 32px;
    border: 1px solid rgba(197, 150, 58, 0.4);
    color: var(--ivory);
    font-family: var(--ff-sans);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    transition:
        border-color 0.25s,
        background 0.25s;
}
.cta-mid-btn-secondary:hover {
    border-color: var(--gold);
    background: rgba(197, 150, 58, 0.06);
}
.cta-mid-deco-number {
    position: absolute;
    right: 48px;
    bottom: -20px;
    font-family: var(--ff-serif);
    font-size: 220px;
    font-weight: 300;
    color: rgba(197, 150, 58, 0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* Avis (single) */
#avis {
    background: var(--ivory);
    padding: 112px 0;
}

/* ===========================================================
   12. PAGE CONTACT
   =========================================================== */
/* Hero */
#contact-hero {
    position: relative;
    /* min-height: 62vh; */
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 72px;
}
#contact-hero .hero-h1 {
    color: #000;
}
.hero-left {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px 80px 48px;
    background: var(--ivory-warm);
}
.hero-right {
    position: relative;
    overflow: hidden;
}
.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.92) saturate(1.05);
    transition: transform 6s ease;
    position: absolute;
}
#contact-hero:hover .hero-right img {
    transform: scale(1.03);
}
.hero-right-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--ivory-warm) 0%, transparent 30%);
    z-index: 1;
}
.hero-tag {
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 24px;
}
.contact-hero-h1,
.page-contact .hero-h1 {
    font-family: var(--ff-serif);
    font-size: clamp(44px, 5.5vw, 82px);
    font-weight: 300;
    color: var(--text);
    line-height: 1.02;
    margin-bottom: 0;
}
.contact-hero-h1 em,
.page-contact .hero-h1 em {
    color: var(--gold);
    font-style: italic;
    display: block;
}
.hero-goldline {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 28px 0;
}
.hero-sub {
    font-family: var(--ff-sans);
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.9;
    /* max-width: 400px; */
    margin-bottom: 36px;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid rgba(197, 150, 58, 0.3);
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-light);
}
.hero-badge-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}
.hero-scroll-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ff-sans);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 600;
    padding: 17px 36px;
    background: var(--gold);
    width: fit-content;
    transition:
        background 0.2s,
        transform 0.2s;
}
.hero-scroll-cta:hover {
    background: oklch(76% 0.13 78);
    transform: translateY(-2px);
}
.hero-scroll-cta svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.2s;
}
.hero-scroll-cta:hover svg {
    transform: translateY(3px);
}
.hero-deco-line {
    position: absolute;
    left: 50%;
    top: 80px;
    bottom: 80px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(197, 150, 58, 0.25) 30%, rgba(197, 150, 58, 0.25) 70%, transparent);
    z-index: 3;
}

/* Stats band — fond noir (contact page) */
#stats-band {
    background: var(--black);
    padding: 0;
}
/* Stats band — fond ivoire (formations page) */
.page-formations #stats-band {
    background: var(--gold-pale);
    border-top: 1px solid rgba(197, 150, 58, 0.15);
    border-bottom: 1px solid rgba(197, 150, 58, 0.15);
}
.page-contact .stats-inner,
.page-formations .stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1280px;
    margin: 0 auto;
}
.page-contact .stat-item,
.page-formations .stat-item {
    padding: 52px 40px;
    border-right: 1px solid rgba(197, 150, 58, 0.1);
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: background 0.2s;
}
.page-contact .stat-item:last-child,
.page-formations .stat-item:last-child {
    border-right: none;
}
.page-contact .stat-item:hover,
.page-formations .stat-item:hover {
    background: rgba(197, 150, 58, 0.04);
}
.page-contact .stat-n,
.page-formations .stat-n {
    font-family: var(--ff-serif);
    font-size: clamp(36px, 3.5vw, 52px);
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}
.stat-label {
    font-family: var(--ff-sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ivory);
    font-weight: 400;
    display: block;
}
.stat-detail {
    font-family: var(--ff-sans);
    font-size: 11px;
    color: rgba(245, 240, 230, 0.35);
    line-height: 1.4;
    margin-top: 2px;
    display: block;
}
/* Overrides couleurs pour formations (fond clair --gold-pale) */
.page-formations .stat-label {
    color: var(--text-light);
}
.page-formations .stat-detail {
    color: var(--gold);
    opacity: 0.8;
}

/* Form section */
#form-section {
    background: var(--ivory);
    padding: 100px 0;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    align-items: start;
}
.form-col-title .tag {
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 20px;
    display: block;
}
.form-col-title h2 {
    font-family: var(--ff-serif);
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 300;
    color: var(--text);
    line-height: 1.08;
    margin-bottom: 0;
}
.form-col-title h2 em {
    color: var(--gold);
    font-style: italic;
}
.form-goldline {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 24px 0 32px;
}
.form-sub {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 40px;
}
.form-notice {
    padding: 16px 20px;
    margin-bottom: 28px;
    font-family: var(--ff-sans);
    font-size: 13px;
    line-height: 1.7;
}
.form-notice-success {
    background: var(--gold-pale);
    border-left: 3px solid var(--gold);
    color: var(--text);
}
.form-notice-error {
    background: #fff5f5;
    border-left: 3px solid #d44;
    color: #933;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.form-row {
    /* display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px; */
}
.form-group {
    position: relative;
    margin-bottom: 24px;
}
.form-label {
    display: block;
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 8px;
}
.form-label .required,
.form-label .req {
    color: var(--gold);
}
.form-input,
.form-textarea,
.form-select {
    width: 100%;
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text);
    background: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(197, 150, 58, 0.25);
    padding: 10px 0;
    outline: none;
    transition: border-color 0.2s;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(60, 50, 30, 0.3);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-bottom-color: var(--gold);
}
.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C5963A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 24px;
}
.form-select option {
    background: var(--ivory);
    color: var(--text);
}
.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.7;
}
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 32px;
    cursor: pointer;
}
.form-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--gold);
    cursor: pointer;
}
.form-check-label {
    font-family: var(--ff-sans);
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.7;
}
.form-check-label a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 36px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--ff-sans);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    cursor: pointer;
    width: 100%;
    transition:
        background 0.2s,
        transform 0.2s;
    width: max-content;
    margin-left: auto;
}
.form-submit:hover {
    background: oklch(76% 0.13 78);
    transform: translateY(-2px);
}
.form-submit-arrow {
    font-size: 16px;
    transition: transform 0.2s;
}
.form-submit:hover .form-submit-arrow {
    transform: translateX(4px);
}
.info-col {
    position: sticky;
    top: 100px;
}
.info-card {
    background: var(--gold-pale);
    border: 1px solid rgba(197, 150, 58, 0.18);
    padding: 40px 36px;
    margin-bottom: 24px;
}
.info-card-title {
    font-family: var(--ff-serif);
    font-size: 22px;
    font-weight: 300;
    color: var(--text);
    margin-bottom: 6px;
}
.info-card-title em {
    color: var(--gold);
    font-style: italic;
}
.info-card-sub {
    font-family: var(--ff-sans);
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.7;
}
.info-card-line {
    width: 32px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 28px;
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}
.info-item:last-child {
    margin-bottom: 0;
}
.info-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 150, 58, 0.08);
}
.info-icon svg {
    width: 15px;
    height: 15px;
    stroke: var(--gold);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.info-text-title {
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 3px;
}
.info-text-val {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}
.horaires-card {
    border: 1px solid rgba(197, 150, 58, 0.12);
    padding: 28px 36px;
}
.horaires-title {
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 16px;
}
.horaires-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}
.horaires-day {
    font-family: var(--ff-sans);
    font-size: 12px;
    color: var(--text-light);
}
.horaires-time {
    font-family: var(--ff-sans);
    font-size: 12px;
    color: var(--text);
    font-weight: 500;
}
.horaires-note {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(197, 150, 58, 0.1);
    font-family: var(--ff-sans);
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.7;
}
/* ── Processus de réservation ─────────────────────────────────────────── */
#reservation-process {
    background: var(--ivory-warm);
    padding: 100px 0;
    border-top: 1px solid rgba(197, 150, 58, 0.12);
}
.rp-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}
.rp-header {
    text-align: center;
    margin-bottom: 56px;
}
.rp-header h2 {
    font-family: var(--ff-serif);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 300;
    color: var(--text);
    line-height: 1.1;
    margin: 12px 0 0;
}
.rp-header h2 em {
    color: var(--gold);
    font-style: italic;
}
.rp-goldline {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 16px auto 20px;
}
.rp-intro {
    font-family: var(--ff-sans);
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.85;
    max-width: 560px;
    margin: 0 auto;
    font-weight: 300;
}

/* Carte cadeau */
.rp-gift {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--gold-pale);
    border: 1px solid rgba(197, 150, 58, 0.25);
    border-left: 3px solid var(--gold);
    padding: 24px 28px;
    margin-bottom: 56px;
}
.rp-gift-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-top: 2px;
}
.rp-gift-icon svg {
    width: 26px;
    height: 26px;
}
.rp-gift-title {
    font-family: var(--ff-serif);
    font-size: 17px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.3;
}
.rp-gift-sub {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.7;
    font-weight: 300;
}
.rp-gift-email {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--gold);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(197, 150, 58, 0.35);
    padding-bottom: 1px;
    transition: border-color 0.2s;
}
.rp-gift-email:hover {
    border-color: var(--gold);
}

/* Étapes */
.rp-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    /* margin-bottom: 72px; */
    position: relative;
}
.rp-steps::before {
    content: "";
    position: absolute;
    top: 36px;
    left: calc(12.5% + 1px);
    right: calc(12.5% + 1px);
    height: 1px;
    background: linear-gradient(to right, rgba(197, 150, 58, 0.15), rgba(197, 150, 58, 0.4), rgba(197, 150, 58, 0.15));
    pointer-events: none;
}
.rp-step {
    background: var(--ivory);
    border: 1px solid rgba(197, 150, 58, 0.13);
    padding: 28px 24px 28px;
    position: relative;
}
.rp-step-num {
    font-family: var(--ff-serif);
    font-size: 38px;
    font-weight: 300;
    color: rgba(197, 150, 58, 0.28);
    line-height: 1;
    margin-bottom: 16px;
}
.rp-step-title {
    font-family: var(--ff-sans);
    font-size: 11px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.rp-step-desc {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
    font-weight: 300;
}
.rp-step-link {
    display: inline-block;
    font-family: var(--ff-sans);
    font-size: 12px;
    color: var(--gold);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(197, 150, 58, 0.3);
    padding-bottom: 1px;
    transition: border-color 0.2s;
}
.rp-step-link:hover {
    border-color: var(--gold);
}

/* Organisation des échanges */
.rp-channels {
    border-top: 1px solid rgba(197, 150, 58, 0.14);
    padding-top: 56px;
}
.rp-channels-label {
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 24px;
    text-align: center;
}
.rp-channel-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 36px;
}
.rp-channel {
    background: var(--ivory);
    border: 1px solid rgba(197, 150, 58, 0.12);
    padding: 28px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.rp-channel-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-top: 2px;
}
.rp-channel-icon svg {
    width: 19px;
    height: 19px;
}
.rp-channel-badge {
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 7px;
}
.rp-channel-value {
    display: block;
    font-family: var(--ff-serif);
    font-size: 18px;
    font-weight: 400;
    color: var(--text);
    text-decoration: none;
    margin-bottom: 5px;
    line-height: 1.2;
    transition: color 0.2s;
}
a.rp-channel-value:hover {
    color: var(--gold);
}
.rp-channel-note {
    font-family: var(--ff-sans);
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
}
.rp-channels-cta {
    text-align: center;
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.85;
    font-weight: 300;
    max-width: 620px;
    margin: 0 auto;
}
.rp-channels-cta em {
    color: var(--gold);
    font-style: italic;
}

/* Notice d'annulation */
#annulation-notice {
    background: var(--ivory);
    border-top: 1px solid rgba(197, 150, 58, 0.1);
    padding: 24px 0;
}
.annulation-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}
.annulation-text {
    font-family: var(--ff-sans);
    font-size: 11px;
    color: oklch(62% 0.01 45);
    line-height: 1.75;
    text-align: center;
    font-weight: 300;
}
.annulation-text strong {
    color: oklch(52% 0.012 45);
    font-weight: 500;
}

#contact-faq {
    background: var(--ivory-deep);
    padding: 112px 0;
}
#contact-reviews {
    background: var(--ivory);
    padding: 112px 0;
}
#footer-strip {
    background: var(--gold-pale);
    border-top: 1px solid rgba(197, 150, 58, 0.2);
    padding: 64px 48px;
    text-align: center;
}
.footer-strip-label {
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 16px;
}
.footer-strip-title {
    font-family: var(--ff-serif);
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 300;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 8px;
}
.footer-strip-title em {
    color: var(--gold);
    font-style: italic;
}
.footer-strip-sub {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 32px;
}

/* ===========================================================
   13. PAGE FORMATIONS
   =========================================================== */
#formations-hero {
    position: relative;
    background: var(--ivory-warm);
    padding: 140px 48px 96px;
    text-align: center;
    border-bottom: 1px solid rgba(197, 150, 58, 0.1);
    overflow: hidden;
}
/* Monogramme décoratif en arrière-plan du hero */
#formations-hero::before {
    content: "F";
    position: absolute;
    top: 60px;
    right: 6vw;
    font-family: var(--ff-serif);
    font-size: clamp(180px, 22vw, 320px);
    font-weight: 300;
    color: rgba(197, 150, 58, 0.05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.hero-h1.formations-h1 {
    font-family: var(--ff-serif);
    font-size: clamp(46px, 6vw, 88px);
    font-weight: 300;
    color: var(--text);
    line-height: 1;
    margin-bottom: 0;
}
.hero-h1.formations-h1 em {
    color: var(--gold);
    font-style: italic;
}
.hero-qualiopi-seal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--gold-pale);
    border: 1px solid rgba(197, 150, 58, 0.25);
    font-family: var(--ff-sans);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    font-weight: 500;
}
.hero-qualiopi-seal svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

#formations-list {
    background: var(--ivory);
    padding: 100px 0;
    counter-reset: formation-counter; /* compteur CSS pour les numéros 01–04 */
}
.formations-header {
    text-align: center;
    margin-bottom: 80px;
}
.formations-header .tag {
    margin-bottom: 20px;
}
.formations-header h2 {
    font-family: var(--ff-serif);
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 300;
    color: var(--text);
    line-height: 1.08;
}
.formations-header h2 em {
    color: var(--gold);
    font-style: italic;
}
.formations-header-line {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 24px auto 0;
}
.formation-item {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 0;
    margin-bottom: 2px;
    background: var(--ivory-deep);
    transition: box-shadow 0.3s;
    counter-increment: formation-counter;
    position: relative;
}
.formation-item:last-child {
    margin-bottom: 0;
}
.formation-item:hover {
    box-shadow: 0 8px 40px rgba(197, 150, 58, 0.1);
}
/* Numéro décoratif 01–04 en grand Cormorant Garamond */
.formation-item::before {
    content: "0" counter(formation-counter);
    position: absolute;
    top: 24px;
    right: 40px;
    font-family: var(--ff-serif);
    font-size: 100px;
    font-weight: 300;
    color: rgba(197, 150, 58, 0.07);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}
.formation-img-wrap {
    position: relative;
    overflow: hidden;
}
.formation-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.92) saturate(1.05);
    transition:
        transform 0.6s ease,
        filter 0.3s;
}
.formation-item:hover .formation-img-wrap img {
    transform: scale(1.04);
    filter: brightness(0.98);
}
.formation-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--black);
    color: var(--gold);
    font-family: var(--ff-sans);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 7px 14px;
    font-weight: 500;
}
.formation-content {
    padding: 48px 52px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
.formation-content-top {
    flex: 1;
}
.formation-tag-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.formation-tag-pill {
    font-family: var(--ff-sans);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 4px 12px;
    border: 1px solid rgba(197, 150, 58, 0.3);
    font-weight: 500;
}
.formation-qualiopi-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--ff-sans);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-light);
    background: var(--gold-pale);
    padding: 4px 10px;
}
.formation-qualiopi-pill svg {
    width: 10px;
    height: 10px;
}
.formation-title {
    font-family: var(--ff-serif);
    font-size: clamp(26px, 2.5vw, 38px);
    font-weight: 300;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 16px;
}
.formation-title em {
    color: var(--gold);
    font-style: italic;
}
.formation-desc {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 28px;
}
.formation-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}
.formation-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.formation-meta-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}
.formation-meta-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.formation-meta-text {
    font-family: var(--ff-sans);
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
}
.formation-meta-text strong {
    color: var(--text);
    font-weight: 500;
}
.formation-btns {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

#formations-faq {
    background: var(--ivory-deep);
    padding: 112px 0;
}
#formations-avis {
    background: var(--ivory);
    padding: 112px 0;
}

/* Inscription form */
#inscription {
    background: var(--ivory-warm);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(197, 150, 58, 0.12);
}
.inscr-noise {
    display: none; /* texture bruit invisible sur fond clair */
}
.inscr-line-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(197, 150, 58, 0.5) 30%, rgba(197, 150, 58, 0.5) 70%, transparent);
}
.inscr-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.inscr-left {
    padding-top: 8px;
}
.inscr-left-tag {
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 24px;
}
.inscr-left-h2 {
    font-family: var(--ff-serif);
    font-size: clamp(36px, 4vw, 60px);
    font-weight: 300;
    color: var(--text);
    line-height: 1.02;
    margin-bottom: 0;
}
.inscr-left-h2 em {
    color: var(--gold);
    font-style: italic;
    display: block;
}
.inscr-goldline {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 28px 0;
}
.inscr-left-sub {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 36px;
}
.inscr-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.inscr-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-sans);
    font-size: 12px;
    color: var(--text-light);
}
.inscr-info-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}
.inscr-form-wrap {
    background: var(--ivory);
    padding: 48px 44px;
    border: 1px solid rgba(197, 150, 58, 0.15);
    box-shadow: 0 4px 32px rgba(197, 150, 58, 0.07);
}
.inscr-form-title {
    font-family: var(--ff-serif);
    font-size: 22px;
    font-weight: 300;
    color: var(--text);
    margin-bottom: 6px;
}
.inscr-form-title em {
    color: var(--gold);
    font-style: italic;
}
.inscr-form-sub {
    font-family: var(--ff-sans);
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}
.form-submit-inscr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 18px 32px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--ff-sans);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.form-submit-inscr:hover {
    background: oklch(76% 0.13 78);
}
.form-submit-inscr:hover .form-submit-arrow {
    transform: translateX(4px);
}

/* ===========================================================
   14. RESPONSIVE
   =========================================================== */
/* Tablet */
@media (max-width: 1100px) {
    /* Shared */
    .container,
    .nav-inner,
    .footer-inner,
    .hero-inner,
    .anchor-nav-inner,
    .hero-content,
    .page-nav-inner {
        padding-left: 32px;
        padding-right: 32px;
    }
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    /* Taxonomy */
    .intro-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .avis-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-badge {
        display: none;
    }
    /* Archive */
    .hero-cards,
    .pourquoi-grid {
        grid-template-columns: 1fr;
    }
    /* Single */
    .def-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .def-right {
        flex-direction: row;
        gap: 2px;
    }
    .formules-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    .cta-mid-inner {
        grid-template-columns: 1fr;
    }
    .cta-mid-left {
        padding: 60px 24px 40px;
        border-right: none;
        border-bottom: 1px solid rgba(197, 150, 58, 0.12);
    }
    .cta-mid-right {
        padding: 40px 24px 60px;
    }
    .cta-mid-deco-number {
        display: none;
    }
    #stats .stats-inner {
        grid-template-columns: 1fr 1fr;
    }
    /* Contact */
    .form-grid {
        grid-template-columns: 1fr;
        gap: 56px;
        padding-left: 32px;
        padding-right: 32px;
    }
    .info-col {
        position: static;
    }
    .page-contact .stats-inner,
    .page-formations .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Process */
    .rp-container {
        padding: 0 32px;
    }
    .rp-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .rp-steps::before {
        display: none;
    }
    .rp-channel-list {
        grid-template-columns: 1fr;
    }
    /* Formations */
    .formation-item {
        grid-template-columns: 320px 1fr;
    }
    .inscr-inner {
        grid-template-columns: 1fr;
        gap: 56px;
        padding-left: 32px;
        padding-right: 32px;
    }
}

/* Mobile */
@media (max-width: 900px) {
    #contact-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hero-right {
        height: 300px;
    }
    .hero-left {
        padding: 60px 24px;
    }
    .hero-right-overlay {
        background: none;
    }
    .hero-deco-line {
        display: none;
    }
    .page-contact .stat-item,
    .page-formations .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(197, 150, 58, 0.1);
    }
    .page-contact .stat-item:nth-child(odd),
    .page-formations .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(197, 150, 58, 0.1);
    }
    #formations-hero {
        padding: 120px 32px 72px;
    }
    #formations-hero::before {
        display: none;
    }
    .formation-item {
        grid-template-columns: 1fr;
    }
    .formation-img-wrap {
        height: 280px;
    }
    .formation-content {
        padding: 36px 32px;
    }
}

@media (max-width: 768px) {
    .container,
    .nav-inner,
    .footer-inner,
    .hero-content,
    .page-nav-inner,
    .inscr-inner {
        padding-left: 24px;
        padding-right: 24px;
    }
    .single-prestation .breadcrumb {
        left: 24px;
    }
    .pour-qui-grid {
        grid-template-columns: 1fr;
    }
    .avis-grid {
        grid-template-columns: 1fr;
    }
    .formules-grid {
        grid-template-columns: 1fr !important;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .hero-scroll {
        display: none;
    }
    .single-prestation #hero {
        min-height: 80vh;
    }
    .prog-timeline::before {
        display: none;
    }
    .prog-step {
        grid-template-columns: 80px 1fr;
    }
    .def-right {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    /* Mobile nav — hamburger */
    .nav-toggle {
        display: flex;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--ivory);
        border-bottom: 1px solid rgba(197, 150, 58, 0.15);
        box-shadow: 0 8px 32px rgba(197, 150, 58, 0.08);
        flex-direction: column;
        padding: 12px 32px 24px;
        gap: 0;
        align-items: stretch;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links .nav-link,
    .nav-links a:not(.nav-cta) {
        display: block !important;
        padding: 14px 0;
        border-bottom: 1px solid rgba(197, 150, 58, 0.07);
        font-size: 13px;
        letter-spacing: 0.08em;
    }
    .nav-links .nav-cta {
        margin-top: 16px;
        text-align: center;
        display: block;
    }
}

@media (max-width: 640px) {
    .container,
    .nav-inner,
    .footer-inner,
    .hero-content,
    .page-nav-inner {
        padding-left: 20px;
        padding-right: 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-stat {
        gap: 28px;
    }
    .prestations-grid {
        grid-template-columns: 1fr;
    }
    .intro-right {
        grid-template-columns: 1fr;
    }
    .filters {
        flex-wrap: wrap;
    }
    .listing-header {
        flex-direction: column;
        align-items: flex-start;
    }
    #stats .stats-inner {
        grid-template-columns: 1fr 1fr;
    }
    .page-nav-links .pnl {
        display: none;
    }
    .page-nav-links .pnl:nth-child(1),
    .page-nav-links .pnl:nth-child(2) {
        display: flex;
    }
    .form-grid {
        padding-left: 20px;
        padding-right: 20px;
    }
    #site-nav {
        padding: 0 20px;
    }
    #formations-hero {
        padding: 120px 24px 72px;
    }
    .page-contact .stats-inner,
    .page-formations .stats-inner {
        grid-template-columns: 1fr;
    }
    .page-contact .stat-item,
    .page-formations .stat-item {
        border-right: none;
    }
    /* Process — mobile */
    #reservation-process {
        padding: 72px 0;
    }
    .rp-container {
        padding: 0 20px;
    }
    .rp-steps {
        grid-template-columns: 1fr;
    }
    .rp-gift {
        flex-direction: column;
        gap: 14px;
    }
    .annulation-inner {
        padding: 0 20px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .inscr-form-wrap {
        padding: 32px 24px;
    }
    .formation-btns {
        flex-direction: column;
        align-items: flex-start;
    }
    #footer-strip {
        padding: 48px 24px;
    }
}

/* ===========================================================
   15. FRONT PAGE / HOME
   =========================================================== */

/* Section layout */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    flex-wrap: wrap;
    gap: 24px;
}
.section-title {
    font-family: var(--ff-serif);
    font-size: clamp(32px, 3.5vw, 54px);
    font-weight: 300;
    color: var(--black);
    margin-top: 12px;
    line-height: 1.1;
}
.section-title em {
    color: var(--gold);
    font-style: italic;
}

/* ── Hero (home-specific — light grid 58/42) ── */
.home #hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 58% 42%;
    overflow: hidden;
    background: var(--ivory-warm);
}
.home .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 64px 80px 48px;
    position: relative;
    z-index: 2;
    max-width: none;
    width: auto;
    margin: 0;
}
.home .hero-content > .tag {
    margin-bottom: 18px;
}
/* Override unscoped taxonomy hero styles for home */
.home .hero-h1 {
    color: var(--text);
    font-size: clamp(52px, 5.5vw, 90px);
    line-height: 1.04;
    margin-bottom: 4px;
}
.home .hero-h1 em {
    color: var(--gold);
    font-style: italic;
}
.hero-tagline {
    font-family: var(--ff-sans);
    color: var(--text-light);
    font-size: 15px;
    max-width: 420px;
    line-height: 1.9;
    margin: 20px 0 40px;
    font-weight: 300;
}
.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.hero-stats {
    display: flex;
    gap: 44px;
}
.home .hero-stat {
    border-left: 1px solid rgba(197, 150, 58, 0.3);
    padding-left: 18px;
    margin-top: 0;
    align-items: center;
}
.home .hero-stat-n {
    font-family: var(--ff-serif);
    font-size: 36px;
    color: var(--gold);
    font-weight: 300;
    line-height: 1;
}
.home .hero-stat-l {
    font-family: var(--ff-sans);
    font-size: 10px;
    color: var(--text-light);
    letter-spacing: 0.08em;
    margin-top: 5px;
    text-transform: uppercase;
}
.hero-photo {
    position: relative;
    overflow: hidden;
}
.hero-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right, var(--ivory-warm) 0%, transparent 28%);
}
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
}
.hero-scroll-line {
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, rgba(197, 150, 58, 0.5), transparent);
}
.hero-scroll-label {
    font-family: var(--ff-sans);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.6;
}

/* Qualiopi badge (hero) */
.qualiopi-badge {
    position: absolute;
    top: 96px;
    right: 48px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 150, 58, 0.28);
    box-shadow: 0 8px 40px rgba(197, 150, 58, 0.12);
    padding: 18px 26px;
    text-align: center;
    min-width: 168px;
}
.q-label {
    font-family: var(--ff-sans);
    font-size: 8px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    /* margin-bottom: 5px; */
}
.q-title {
    font-family: var(--ff-serif);
    font-size: 24px;
    color: var(--text);
    font-weight: 300;
    letter-spacing: 0.1em;
}

.q-title img {
    width: 150px;
}
.q-line {
    width: 32px;
    height: 1px;
    background: rgba(197, 150, 58, 0.35);
    margin: 0px auto 10px auto;
}
.q-sub {
    font-family: var(--ff-sans);
    font-size: 9px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ── Trust Bar ── */
#trust-bar {
    background: var(--gold-pale);
    border-top: 1px solid rgba(197, 150, 58, 0.18);
    border-bottom: 1px solid rgba(197, 150, 58, 0.18);
    padding: 22px 0;
}
.trust-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
}
.trust-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}
.trust-label {
    font-family: var(--ff-sans);
    font-size: 11px;
    color: oklch(45% 0.025 75);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ── Deux Univers ── */
#deux-univers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}
/* univers-pro : côté Entreprises — fond clair ivory-warm */
.univers-pro {
    background: linear-gradient(160deg, #f6e5c7 0%, #fdf1dc 100%);
    padding: 72px 56px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    transition: background 0.35s;
    border-right: 5px solid var(--gold);
}
.univers-pro:hover {
    background: linear-gradient(160deg, #f6e5c7 0%, #fdf1dc 100%);
}
.univers-pro .u-img {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    transition: opacity 0.35s;
}
.univers-pro:hover .u-img {
    opacity: 0.3;
}
.univers-pro .u-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.univers-pro .u-content {
    position: relative;
}
.univers-pro .u-bar {
    width: 60px;
    height: 4px;
    background: var(--gold);
    margin: 20px 0;
}
.univers-pro h2 {
    font-family: var(--ff-serif);
    font-size: clamp(26px, 3vw, 42px);
    color: #000;
    font-weight: 300;
    margin-top: 12px;
    line-height: 1.1;
    margin-bottom: 14px;
}
.univers-pro h2 em {
    color: var(--gold);
    font-style: italic;
}
.univers-pro p {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: #a3a3a3;
    line-height: 1.85;
    margin-bottom: 28px;
    max-width: 360px;
}
/* univers-dark kept as alias (rétro-compatibilité) */
.univers-dark {
    background: var(--text);
    padding: 72px 56px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    transition: background 0.35s;
}
.univers-dark:hover {
    background: oklch(91% 0.02 75);
}
.univers-dark .u-img {
    position: absolute;
    inset: 0;
    opacity: 0.14;
    transition: opacity 0.35s;
}
.univers-dark:hover .u-img {
    opacity: 0.22;
}
.univers-dark .u-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.univers-dark .u-content {
    position: relative;
}
.univers-dark .u-bar {
    width: 60px;
    height: 4px;
    background: var(--gold);
    margin: 20px 0;
}
.univers-dark .tag {
    color: rgba(197, 150, 58, 0.88);
}
.univers-dark h2 {
    font-family: var(--ff-serif);
    font-size: clamp(26px, 3vw, 42px);
    color: var(--ivory);
    font-weight: 300;
    margin-top: 12px;
    line-height: 1.1;
    margin-bottom: 14px;
}
.univers-dark h2 em {
    color: var(--gold);
    font-style: italic;
}
.univers-dark p {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.85;
    margin-bottom: 28px;
    max-width: 360px;
}
.univers-light {
    background: var(--ivory-deep);
    background: linear-gradient(160deg, #f6e5c7 0%, #fdf1dc 100%);

    padding: 72px 56px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    transition: background 0.35s;
}
.univers-light:hover {
    background: oklch(91% 0.02 75);
    background: linear-gradient(160deg, #f6e5c7 0%, #fdf1dc 100%);
}
.univers-light .u-img {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    transition: opacity 0.35s;
}
.univers-light:hover .u-img {
    opacity: 0.22;
}
.univers-light .u-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.univers-light .u-content {
    position: relative;
}
.univers-light .u-bar {
    width: 60px;
    height: 4px;
    background: var(--gold);
    margin: 20px 0;
}
.univers-light h2 {
    font-family: var(--ff-serif);
    font-size: clamp(26px, 3vw, 42px);
    color: var(--black);
    font-weight: 300;
    margin-top: 12px;
    line-height: 1.1;
    margin-bottom: 14px;
}
.univers-light h2 em {
    color: var(--gold);
    font-style: italic;
}
.univers-light p {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 28px;
    max-width: 360px;
}
/* Filigrane typographique dans les blocs univers */
.u-watermark {
    position: absolute;
    font-family: var(--ff-serif);
    font-size: clamp(64px, 9vw, 148px);
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    top: 36px;
    left: 0px;
    z-index: 1;
}
.univers-pro .u-watermark {
    color: rgba(255, 255, 255, 0.07);
}
.univers-light .u-watermark {
    color: rgba(0, 0, 0, 0.06);
}
.univers-pro .u-content,
.univers-light .u-content {
    z-index: 2;
    position: relative;
}

/* ── Formations B2B (tabs) ── */
.home #formations {
    background: #fdf1dc;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}
.formations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(197, 150, 58, 0.07);
}
.formations-list {
    background: var(--ivory);
}
.ftab {
    padding: 26px 32px;
    cursor: pointer;
    border-bottom: 1px solid rgba(197, 150, 58, 0.1);
    background: transparent;
    transition: background 0.22s;
    position: relative;
}
.ftab:hover:not(.ftab-active) {
    background: var(--gold-pale);
}
.ftab-active {
    background: var(--ivory-deep);
}
.ftab-active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
}
.ftab-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 7px;
}
.ftab-num {
    font-family: var(--ff-serif);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: rgba(0, 0, 0, 0.18);
}
.ftab-active .ftab-num {
    color: rgba(197, 150, 58, 0.45);
}
.ftab-badge {
    font-family: var(--ff-sans);
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    padding: 3px 9px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.ftab-active .ftab-badge {
    color: var(--gold);
    border-color: rgba(197, 150, 58, 0.35);
}
.ftab h3 {
    font-family: var(--ff-serif);
    font-size: 21px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--black);
}
.ftab p {
    font-family: var(--ff-sans);
    font-size: 11px;
    margin-top: 4px;
    color: var(--text-light);
}
.fdetail {
    background: var(--ivory-deep);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.fdetail .tag {
    margin-bottom: 12px;
}
.fdetail h3 {
    font-family: var(--ff-serif);
    font-size: 30px;
    color: var(--black);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2px;
}
.fdetail .desc {
    font-family: var(--ff-sans);
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 24px;
}
.fdetail .objectifs {
    margin-bottom: 32px;
}
.fdetail .obj {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 10px;
}
.fdetail .obj-arrow {
    color: var(--gold);
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0;
}
.fdetail .obj-text {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text);
}
.fdetail-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}
.fdetail-note {
    font-family: var(--ff-sans);
    font-size: 10px;
    color: var(--text-light);
    letter-spacing: 0.06em;
}
.qualiopi-bar {
    margin-top: 2px;
    background: var(--gold-pale);
    padding: 28px 40px;
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid rgba(197, 150, 58, 0.15);
    border-bottom: 2px solid rgba(197, 150, 58, 0.22);
}
.q-bar-logo-title {
    font-family: var(--ff-serif);
    font-size: 13px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}
.q-bar-logo-sub {
    font-family: var(--ff-sans);
    font-size: 9px;
    color: var(--text-light);
    letter-spacing: 0.1em;
    margin-top: 3px;
}
.q-bar-text {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
    flex: 1;
    min-width: 240px;
}
.q-bar-text strong {
    color: var(--text);
}

/* ── Prestations B2B ── */
.home #entreprises {
    background: #fdf1dc;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}
/* ── Prestations B2B — Slider 2-per-view ── */
.presta-slider-wrap {
    margin-bottom: 24px;
}
.presta-slider-viewport {
    overflow: hidden;
    border-radius: 3px;
}
.presta-slider-track {
    display: flex;
    gap: 12px;
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}
.presta-slide {
    flex-shrink: 0;
    position: relative;
    height: 460px;
    overflow: hidden;
    border-radius: 3px;
}
.presta-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.7s ease,
        filter 0.4s ease;
}
.presta-slide:hover img {
    transform: scale(1.04);
    filter: brightness(0.88);
}
.presta-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(245, 228, 185, 0.94) 0%, rgba(245, 228, 185, 0.7) 40%, transparent 72%);
}
.presta-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 36px;
}
.presta-tag-badge {
    font-family: var(--ff-sans);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 3px 9px;
    border: 1px solid rgba(197, 150, 58, 0.5);
    display: inline-block;
    margin-bottom: 12px;
}
.presta-title {
    font-family: var(--ff-serif);
    font-size: clamp(20px, 1.8vw, 28px);
    color: var(--text);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 10px;
}
.presta-desc {
    font-family: var(--ff-sans);
    font-size: 12.5px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.presta-link {
    font-family: var(--ff-sans);
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
}
.presta-link:hover {
    text-decoration: underline;
}
/* Footer : counter + dashes + nav */
.presta-slider-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0 0;
    gap: 16px;
}
.presta-counter {
    font-family: var(--ff-sans);
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.1em;
    min-width: 52px;
}
.presta-counter strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}
.presta-dots {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
}
.presta-dot {
    height: 2px;
    width: 22px;
    border-radius: 1px;
    background: rgba(197, 150, 58, 0.22);
    border: none;
    cursor: pointer;
    transition:
        width 0.35s ease,
        background 0.35s ease;
    padding: 0;
}
.presta-dot.active {
    width: 44px;
    background: var(--gold);
}
.presta-slider-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}
.presta-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(197, 150, 58, 0.35);
    background: transparent;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        background 0.25s,
        border-color 0.25s,
        color 0.25s;
}
.presta-nav-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}
.presta-cta-bar {
    background: var(--ivory);
    border: 1px solid rgba(197, 150, 58, 0.2);
    padding: 28px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    box-shadow: var(--shadow);
}
.presta-cta-bar p {
    font-family: var(--ff-serif);
    font-size: 18px;
    color: var(--black);
    font-weight: 300;
}
.presta-cta-bar small {
    font-family: var(--ff-sans);
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
    display: block;
}
.presta-cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── Particuliers ── */
.home #particuliers {
    background: var(--ivory);
    padding: 96px 0;
    position: relative;
}
/* En-tête section */
.part-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.part-intro-left {
    flex-shrink: 0;
}
.part-intro-text {
    font-family: var(--ff-sans);
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.85;
    max-width: 480px;
    padding-bottom: 4px;
}
/* Filtres */
.part-filters {
    display: flex;
    gap: 4px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.pfilter {
    font-family: var(--ff-sans);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 11px 28px;
    border: 1.5px solid rgba(197, 150, 58, 0.3);
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.22s;
}
.pfilter:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.pfilter-active {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--black);
}
/* Cartes cachées par le filtre */
.scard.hidden {
    display: none;
}
/* CTA bas de section */
.part-cta-bar {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding-top: 8px;
    flex-wrap: wrap;
}
/* Grille 6 cartes (3 cols × 2 rows) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 40px;
}
.scard {
    background: var(--ivory-deep);
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}
.scard:hover {
    background: var(--ivory-warm);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.scard img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: brightness(0.92);
    transition: filter 0.35s;
}
.scard:hover img {
    filter: brightness(0.87);
}
.scard-body {
    padding: 28px 28px 32px;
}
.scard-title {
    font-family: var(--ff-serif);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 8px;
    color: var(--black);
}
.scard-desc {
    font-family: var(--ff-sans);
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-light);
}
.scard-details {
    margin-bottom: 20px;
}
.scard-detail {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
}
.scard-dot {
    color: var(--gold);
    font-size: 9px;
    margin-top: 4px;
    flex-shrink: 0;
}
.scard-detail-text {
    font-family: var(--ff-sans);
    font-size: 12px;
    color: var(--text-light);
}
.scard-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(197, 150, 58, 0.12);
    padding-top: 16px;
}
.scard-prix {
    font-family: var(--ff-serif);
    font-size: 18px;
    color: var(--gold);
    font-style: italic;
}
.scard-reserve {
    font-family: var(--ff-sans);
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ── Céline / À propos ── */
.home #apropos {
    background: var(--ivory-deep);
    padding: 96px 0;
}
.celine-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.celine-photo-wrap {
    position: relative;
}
.celine-photo-wrap img {
    width: 100%;
    height: 540px;
    object-fit: cover;
}
.celine-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--black);
    padding: 24px 28px;
    max-width: 270px;
}
.cc-label {
    font-family: var(--ff-serif);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}
.cc-name {
    font-family: var(--ff-serif);
    font-size: 22px;
    color: var(--ivory);
    font-weight: 300;
}
.cc-line {
    width: 32px;
    height: 1px;
    background: rgba(197, 150, 58, 0.4);
    margin: 10px 0;
}
.cc-sub {
    font-family: var(--ff-sans);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}
.celine-content p {
    font-family: var(--ff-sans);
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
}
.celine-chiffres {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.celine-chiffre {
    border-left: 2px solid rgba(197, 150, 58, 0.28);
    padding-left: 16px;
}
.cc-n {
    font-family: var(--ff-serif);
    font-size: 28px;
    color: var(--gold);
    font-weight: 300;
    line-height: 1;
}
.cc-l {
    font-family: var(--ff-sans);
    font-size: 10px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 3px;
}

/* ── Boutique ── */
#boutique {
    background: var(--ivory-warm);
    padding: 80px 0;
}
.boutique-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 24px;
}
.boutique-voir {
    font-family: var(--ff-sans);
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: opacity 0.2s;
}
.boutique-voir:hover {
    opacity: 0.7;
}
.boutique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2px;
}
.bcard {
    background: var(--ivory-deep);
    transition: all 0.25s;
    cursor: pointer;
    box-shadow: var(--shadow);
}
.bcard:hover {
    background: var(--gold-pale);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.bcard img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    filter: brightness(0.93);
    transition: filter 0.3s;
}
.bcard:hover img {
    filter: brightness(0.88);
}
.bcard-body {
    padding: 18px 20px 22px;
}
.bcard-cat {
    font-family: var(--ff-sans);
    font-size: 9px;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.bcard-nom {
    font-family: var(--ff-serif);
    font-size: 17px;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.2;
}
.bcard-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bcard-prix {
    font-family: var(--ff-serif);
    font-size: 17px;
    color: var(--gold);
    font-style: italic;
}
.bcard-action {
    font-family: var(--ff-sans);
    font-size: 10px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ── Témoignages ── */
.home #temoignages {
    background: var(--ivory);
    padding: 96px 0;
}
.tem-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    flex-wrap: wrap;
    gap: 24px;
}
.tem-stars {
    display: flex;
    align-items: center;
    gap: 6px;
}
.tem-note {
    font-family: var(--ff-serif);
    font-size: 22px;
    color: var(--black);
    font-style: italic;
    margin-left: 4px;
}
.tem-count {
    font-family: var(--ff-sans);
    font-size: 12px;
    color: var(--text-light);
}
.tem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2px;
}
.tcard {
    background: var(--ivory-deep);
    padding: 32px 28px;
    transition: all 0.25s;
    border-top: 2px solid transparent;
    box-shadow: var(--shadow);
}
.tcard:hover {
    background: var(--ivory);
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
}
.tcard-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}
.tcard-stars {
    display: flex;
    gap: 3px;
}
.tcard-type {
    font-family: var(--ff-sans);
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 3px 9px;
    border: 1px solid rgba(197, 150, 58, 0.28);
}
.tcard-text {
    font-family: var(--ff-serif);
    font-size: 16px;
    color: var(--text);
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 20px;
}
.tcard-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tcard-nom {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--black);
    font-weight: 500;
}
.tcard-poste {
    font-family: var(--ff-sans);
    font-size: 11px;
    color: var(--text-light);
    margin-top: 2px;
}
.tcard-verifie {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--ff-sans);
    font-size: 9px;
    color: var(--text-light);
    letter-spacing: 0.08em;
}
.tem-voir {
    text-align: center;
    margin-top: 40px;
}
.tem-voir a {
    font-family: var(--ff-sans);
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.tem-voir a:hover {
    color: var(--gold);
}

/* ── CTA Final ── */
#cta-final {
    background: var(--ivory-warm);
    border-top: 1px solid rgba(197, 150, 58, 0.14);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
#cta-final::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 64px;
    background: linear-gradient(to bottom, transparent, rgba(197, 150, 58, 0.4));
}
#cta-final::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(197, 150, 58, 0.05), transparent);
    pointer-events: none;
}
.cta-inner {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 48px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta-inner > .tag {
    margin-bottom: 18px;
}
.cta-h2 {
    font-family: var(--ff-serif);
    font-size: clamp(32px, 4vw, 58px);
    font-weight: 300;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 22px;
}
.cta-h2 em {
    color: var(--gold);
    font-style: italic;
}
.cta-sub {
    font-family: var(--ff-sans);
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 44px;
    font-weight: 300;
}
.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Google icon */
.google-icon-g {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ── Thème sombre — Sections Pro (Formations & Entreprises) ── */

/* Titres & tags de section */
.home #formations .section-title,
.home #entreprises .section-title {
    color: var(--text);
}

/* Texte inline dans section-header (overrides inline styles) */
.home #formations .section-header div[style],
.home #entreprises .section-header div[style] {
    color: var(--text-light) !important;
}

/* ── Formations tabs ── */
.home #formations .formations-list {
    background: transparent;
}
.home #formations .ftab {
    border-bottom-color: rgba(197, 150, 58, 0.12);
}
.home #formations .ftab:hover:not(.ftab-active) {
    background: rgba(197, 150, 58, 0.07);
}
.home #formations .ftab-active {
    background: rgba(197, 150, 58, 0.1);
}
.home #formations .ftab-num {
    color: rgba(0, 0, 0, 0.18);
}
.home #formations .ftab-active .ftab-num {
    color: rgba(197, 150, 58, 0.65);
}
.home #formations .ftab-badge {
    color: var(--text-light);
    border-color: rgba(0, 0, 0, 0.1);
}
.home #formations .ftab h3 {
    color: var(--text);
}
.home #formations .ftab p {
    color: var(--text-light);
}

/* ── Formations detail panel ── */
.home #formations .fdetail {
    background: rgba(197, 150, 58, 0.07);
}
.home #formations .fdetail h3 {
    color: var(--text);
}
.home #formations .fdetail .desc {
    color: var(--text-light);
}
.home #formations .fdetail .obj-text {
    color: var(--text);
}
.home #formations .fdetail-note {
    color: var(--text-light);
}

/* ── Qualiopi bar ── */
.home #formations .qualiopi-bar {
    background: rgba(197, 150, 58, 0.08);
    border-top-color: rgba(197, 150, 58, 0.18);
    border-bottom-color: rgba(197, 150, 58, 0.18);
}
.home #formations .q-bar-logo-sub {
    color: var(--text-light);
}
.home #formations .q-bar-text {
    color: var(--text-light);
}
.home #formations .q-bar-text strong {
    color: var(--text);
}

/* ── Prestations B2B — CTA bar ── */
.home #entreprises .presta-cta-bar {
    background: rgba(197, 150, 58, 0.07);
    border-color: rgba(197, 150, 58, 0.2);
}
.home #entreprises .presta-cta-bar p {
    color: var(--text);
}
.home #entreprises .presta-cta-bar small {
    color: var(--text-light);
}

/* ── Container au-dessus du watermark ── */
.home #formations .container,
.home #entreprises .container {
    position: relative;
    z-index: 1;
}

/* ── Watermark "Professionnel" — sections pro ── */
.pro-watermark {
    position: absolute;
    font-family: var(--ff-serif);
    font-size: clamp(96px, 14vw, 220px);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    top: 115px;
    /* right: -40px; */
    transform: translateY(-50%);
    color: rgba(197, 150, 58, 0.1);
    z-index: 0;
}

/* ── Séparateur or entre sections pro (sombre) et particuliers (clair) ── */
.home #particuliers {
    border-top: 2px solid rgba(197, 150, 58, 0.32);
}

/* ── Responsive — front page ── */
@media (max-width: 1024px) {
    .home #hero {
        grid-template-columns: 1fr;
    }
    .hero-photo {
        min-height: 400px;
        position: relative;
    }
    .hero-photo::before {
        background: linear-gradient(to bottom, var(--ivory-warm), transparent 40%);
    }
    .home .hero-content {
        padding: 100px 32px 60px;
    }
    .qualiopi-badge {
        top: auto;
        bottom: 32px;
        right: 32px;
    }
    #deux-univers {
        grid-template-columns: 1fr;
    }
    .formations-grid {
        grid-template-columns: 1fr;
    }
    .fdetail {
        display: flex !important;
    }
    .celine-grid,
    .part-header,
    .part-intro {
        grid-template-columns: 1fr;
        gap: 40px;
        flex-direction: column;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 640px) {
    .home .hero-stats {
        gap: 24px;
    }
    .services-grid,
    .tem-grid,
    .boutique-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================================================
   SINGLE PRESTATION — Section En séance (mosaïque 3 photos)
   =========================================================== */
#en-seance {
    background: var(--ivory-warm);
    padding: 96px 0;
}
.seance-intro {
    margin-bottom: 48px;
}
.seance-intro .seance-title {
    font-family: var(--ff-serif);
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 300;
    color: var(--text);
    line-height: 1.1;
    margin-top: 10px;
}
.seance-intro .seance-title em {
    color: var(--gold);
    font-style: italic;
}

.seance-mosaic {
    display: grid;
    grid-template-columns: 16fr 3fr;
    gap: 3px;
    position: relative;
}
.seance-main {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}
.seance-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.seance-main:hover img {
    transform: scale(1.04);
}
.seance-main-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(18, 14, 10, 0.55) 0%, transparent 100%);
}
.seance-tag {
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.seance-col {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.seance-sm {
    overflow: hidden;
    aspect-ratio: 1/1;
    flex-shrink: 0;
    width: 100%;
}
.seance-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.seance-sm:hover img {
    transform: scale(1.04);
}

.seance-intro-text {
    font-family: var(--ff-sans);
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.85;
    /* max-width: 560px; */
    margin-top: 16px;
    font-weight: 300;
}

.seance-quote {
    grid-column: 1/3;
    display: flex;
    align-items: flex-end;
    gap: 32px;
    padding: 40px 0 0;
    border-top: 1px solid rgba(197, 150, 58, 0.15);
    margin-top: 40px;
}
.seance-quote-line {
    width: 2px;
    height: 64px;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 4px;
}
.seance-quote-text {
    font-family: var(--ff-serif);
    font-size: clamp(17px, 1.6vw, 22px);
    font-style: italic;
    color: var(--text);
    line-height: 1.5;
    flex: 1;
    text-wrap: balance;
}
.seance-quote-author {
    flex-shrink: 0;
    text-align: right;
}
.seance-quote-name {
    font-family: var(--ff-sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}
.seance-quote-role {
    font-family: var(--ff-sans);
    font-size: 11px;
    color: var(--text-light);
    margin-top: 3px;
}

/* ===========================================================
   SINGLE PRESTATION — Carte "Idéal en cadeau" (photo)
   =========================================================== */
.def-card--cadeau {
    padding-bottom: 0;
    overflow: hidden;
}
.def-card--cadeau .def-card-text {
    margin-bottom: 20px;
}
.def-card-cadeau-photo {
    margin: 0 -28px -28px;
    height: 140px;
    overflow: hidden;
    border-top: 1px solid rgba(197, 150, 58, 0.15);
}
.def-card-cadeau-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.95) saturate(0.9);
}
.def-card--cadeau:hover .def-card-cadeau-photo img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
    .seance-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .seance-main {
        grid-row: auto;
        aspect-ratio: 16/9;
    }
    .seance-col {
        flex-direction: row;
    }
    .seance-sm {
        aspect-ratio: 1/1;
    }
    .seance-quote {
        grid-column: 1/2;
        /* flex-direction: column; */
        gap: 16px;
    }
    .seance-quote-author {
        text-align: left;
        display: none;
    }
    .galerie-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 220px;
    }
    .galerie-item-1,
    .galerie-item-2,
    .galerie-item-3,
    .galerie-item-4 {
        grid-column: auto;
        grid-row: auto;
    }
    .galerie-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .seance-col {
        grid-column: 1;
    }
    .prog-step-body {
        padding: 48px 0 48px 0px;
    }
    #page-nav {
        display: none;
    }
    .ctaf-right {
        padding: 20px;
    }
    .ctaf-stats {
        flex-direction: column;
        gap: 20px;
    }
    .single-prestation #hero {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }
    .single-prestation .hero-bg {
        grid-column: initial;
        grid-row: initial;
        position: relative;
        overflow: hidden;
        height: 400px;
    }
    .single-prestation .hero-content{
        padding:20px;
    }
}
@media (max-width: 640px) {
    .seance-col {
        flex-direction: column;
    }
    .galerie-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 200px);
    }
}

/* ============================================================
   SINGLE FORMATION  (.fs-*)
   ============================================================ */

/* ── Héro ── */
.fs-hero {
    background: var(--ivory-warm);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 78vh;
    overflow: hidden;
}
.fs-hero-content {
    padding: 48px 56px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}
.fs-hero-h1 {
    font-family: var(--ff-serif);
    font-size: clamp(38px, 4.5vw, 72px);
    font-weight: 300;
    line-height: 1.08;
    color: var(--text);
    margin: 0;
}
.fs-hero-tagline {
    font-family: var(--ff-sans);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 480px;
    margin: 0;
}
.fs-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.fs-badge {
    font-family: var(--ff-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 6px 14px;
    border: 1px solid rgba(197, 150, 58, 0.25);
    color: var(--text-light);
    background: var(--ivory);
    border-radius: 2px;
}
.fs-badge--qualiopi {
    color: var(--gold);
    border-color: var(--gold);
    background: var(--gold-pale);
}
.fs-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.fs-hero-visual {
    position: relative;
    overflow: hidden;
    background: var(--ivory-deep);
}
.fs-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.fs-hero-monogramme {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    font-family: var(--ff-serif);
    font-size: clamp(180px, 20vw, 320px);
    font-weight: 300;
    color: rgba(197, 150, 58, 0.1);
    line-height: 1;
    pointer-events: none;
    z-index: 1;
    user-select: none;
}

/* ── Stats bar ── */
.fs-stats-bar {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-top: 1px solid rgba(197, 150, 58, 0.15);
    border-bottom: 1px solid rgba(197, 150, 58, 0.15);
    background: var(--ivory);
}
.fs-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px 16px;
    gap: 4px;
    border-right: 1px solid rgba(197, 150, 58, 0.12);
}
.fs-stat:last-child {
    border-right: none;
}
.fs-stat-icone {
    font-size: 18px;
    line-height: 1;
}
.fs-stat-label {
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-light);
}
.fs-stat-val {
    font-family: var(--ff-serif);
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
}

/* ── Layout 2 colonnes ── */
.fs-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 48px;
    align-items: start;
}

/* ── Sections contenu ── */
.fs-section {
    padding: 56px 0;
    border-bottom: 1px solid rgba(197, 150, 58, 0.1);
}
.fs-section:first-child {
    padding-top: 0;
}
.fs-section:last-child {
    border-bottom: none;
}
.fs-section--alt {
    background: none; /* les alternances se font via padding uniquement */
}
.fs-section--seo {
    font-size: 13px;
    color: var(--text-light);
}
.fs-section-h2 {
    font-family: var(--ff-serif);
    font-size: clamp(26px, 2.8vw, 40px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text);
    margin: 6px 0 0;
}
.fs-gold-line {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 14px 0 20px;
}
.fs-section-intro {
    font-family: var(--ff-sans);
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0 0 24px;
}
.fs-citation {
    font-family: var(--ff-serif);
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
    border-left: 3px solid var(--gold-light);
    margin: 0 0 24px;
    padding: 8px 20px;
    background: var(--gold-pale);
}
.fs-prose p,
.fs-prose {
    font-family: var(--ff-sans);
    font-size: 14px;
    line-height: 1.85;
    font-weight: 300;
    color: var(--text);
    margin: 0 0 14px;
}

/* Publics */
.fs-publics-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.fs-pub-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-sans);
    font-size: 13px;
    font-weight: 400;
    padding: 10px 18px;
    background: var(--ivory-deep);
    border: 1px solid rgba(197, 150, 58, 0.2);
    color: var(--text);
}

/* Objectifs */
.fs-obj-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.fs-obj-list li {
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-family: var(--ff-sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text);
}
.fs-obj-check {
    color: var(--gold);
    font-weight: 600;
    flex-shrink: 0;
}

/* Modules programme */
.fs-modules {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.fs-module {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0;
    background: var(--ivory);
    border: 1px solid rgba(197, 150, 58, 0.12);
    transition: border-color 0.3s;
}
.fs-module:hover {
    border-color: rgba(197, 150, 58, 0.35);
}
.fs-module-num {
    font-family: var(--ff-serif);
    font-size: 22px;
    font-weight: 300;
    color: var(--gold);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 22px 0;
    border-right: 1px solid rgba(197, 150, 58, 0.12);
}
.fs-module-body {
    padding: 20px 24px;
}
.fs-module-titre {
    font-family: var(--ff-sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin: 0 0 6px;
}
.fs-module-desc {
    font-family: var(--ff-sans);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Méthodes */
.fs-meth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}
.fs-meth-card {
    background: var(--ivory-deep);
    border: 1px solid rgba(197, 150, 58, 0.12);
    padding: 28px;
}
.fs-meth-icone {
    font-size: 24px;
    margin-bottom: 12px;
    line-height: 1;
}
.fs-meth-titre {
    font-family: var(--ff-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    margin: 0 0 8px;
}
.fs-meth-desc {
    font-family: var(--ff-sans);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Galerie */
.fs-galerie {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}
.fs-galerie-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--ivory-deep);
}
.fs-galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.fs-galerie-item:hover img {
    transform: scale(1.04);
}
.fs-galerie-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(197, 150, 58, 0.3);
    font-family: var(--ff-sans);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
}

/* Modalités */
.fs-modal-table {
    width: 100%;
    border-collapse: collapse;
}
.fs-modal-table tr {
    border-bottom: 1px solid rgba(197, 150, 58, 0.1);
}
.fs-modal-table th,
.fs-modal-table td {
    padding: 14px 16px;
    text-align: left;
    font-family: var(--ff-sans);
    font-size: 13px;
    vertical-align: top;
}
.fs-modal-table th {
    width: 28%;
    font-weight: 600;
    color: var(--text);
    background: var(--gold-pale);
    border-right: 2px solid rgba(197, 150, 58, 0.2);
}
.fs-modal-table td {
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-light);
}

/* Financement */
.fs-certif-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}
.fs-certif-card {
    background: var(--gold-pale);
    border: 1px solid rgba(197, 150, 58, 0.2);
    padding: 28px;
}
.fs-certif-icone {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--gold);
}
.fs-certif-titre {
    font-family: var(--ff-sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 8px;
    letter-spacing: 0.06em;
}

/* Handicap */
.fs-handi-alerte {
    background: var(--gold-pale);
    border-left: 3px solid var(--gold);
    padding: 18px 22px;
    margin-bottom: 16px;
}
.fs-handi-alerte strong {
    display: block;
    font-family: var(--ff-sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}
.fs-handi-alerte p {
    font-family: var(--ff-sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--text-light);
    margin: 0;
}

/* Indicateurs résultats */
.fs-indic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-bottom: 16px;
}
.fs-indic {
    background: var(--ivory-deep);
    border: 1px solid rgba(197, 150, 58, 0.15);
    padding: 32px 24px;
    text-align: center;
}
.fs-indic-val {
    font-family: var(--ff-serif);
    font-size: 44px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}
.fs-indic-label {
    font-family: var(--ff-sans);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    line-height: 1.5;
}
.fs-indic-note {
    font-family: var(--ff-sans);
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

/* SEO */
.fs-seo-h2 {
    font-family: var(--ff-sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    margin: 0 0 8px;
}

/* ── Formations associées ── */
.fs-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.fs-related-card {
    display: block;
    text-decoration: none;
    background: var(--ivory);
    border: 1px solid rgba(197, 150, 58, 0.12);
    overflow: hidden;
    transition:
        border-color 0.3s,
        box-shadow 0.3s;
}
.fs-related-card:hover {
    border-color: rgba(197, 150, 58, 0.35);
    box-shadow: 0 4px 24px rgba(197, 150, 58, 0.08);
}
.fs-related-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}
.fs-related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.fs-related-card:hover .fs-related-img img {
    transform: scale(1.04);
}
.fs-related-body {
    padding: 18px 20px;
}
.fs-related-body h3 {
    font-family: var(--ff-serif);
    font-size: 18px;
    font-weight: 300;
    color: var(--text);
    margin: 6px 0 8px;
    line-height: 1.25;
}
.fs-related-duree {
    font-family: var(--ff-sans);
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.08em;
}

/* ── Sidebar ── */
.fs-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.fs-sb-card {
    background: var(--ivory);
    border: 1px solid rgba(197, 150, 58, 0.2);
    padding: 28px;
}
.fs-sb-cta {
    background: var(--gold-pale);
    border-color: rgba(197, 150, 58, 0.3);
}
.fs-sb-eyebrow {
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.fs-sb-titre {
    font-family: var(--ff-serif);
    font-size: 20px;
    font-weight: 300;
    color: var(--text);
    margin: 0 0 10px;
    line-height: 1.25;
}
.fs-sb-texte {
    font-family: var(--ff-sans);
    font-size: 12px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0 0 18px;
}
.fs-sb-inf-titre {
    font-family: var(--ff-sans);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-light);
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(197, 150, 58, 0.2);
}
.fs-sb-infos {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.fs-sb-infos li {
    display: grid;
    grid-template-columns: 20px 80px 1fr;
    gap: 6px;
    align-items: baseline;
    font-family: var(--ff-sans);
    font-size: 12px;
}
.fs-sb-inf-label {
    color: var(--text-light);
}
.fs-sb-inf-val {
    color: var(--text);
    font-weight: 500;
}
.fs-sb-certif {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(197, 150, 58, 0.15);
}
.fs-sb-certif-titre {
    font-family: var(--ff-sans);
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
}
.fs-sb-certif-sous {
    font-family: var(--ff-sans);
    font-size: 11px;
    color: var(--text-light);
}

/* ── CTA finale ── */
.fs-cta-section {
    background: var(--ivory-deep);
    border-top: 1px solid rgba(197, 150, 58, 0.15);
    padding: 96px 0;
    text-align: center;
}
.fs-cta-h2 {
    font-family: var(--ff-serif);
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 300;
    color: var(--text);
    line-height: 1.15;
    margin: 8px 0 16px;
}
.fs-cta-texte {
    font-family: var(--ff-sans);
    font-size: 15px;
    font-weight: 300;
    color: var(--text-light);
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.fs-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .fs-layout {
        grid-template-columns: 1fr;
        padding: 48px 32px;
    }
    .fs-sidebar {
        position: static;
    }
    .fs-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .fs-hero-visual {
        height: 340px;
    }
    .fs-stats-bar {
        grid-template-columns: repeat(3, 1fr);
    }
    .fs-related-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 640px) {
    .fs-hero-content {
        padding: 32px 24px 40px;
    }
    .fs-layout {
        padding: 32px 20px;
    }
    .fs-meth-grid,
    .fs-certif-grid,
    .fs-indic-grid {
        grid-template-columns: 1fr;
    }
    .fs-stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    .fs-galerie {
        grid-template-columns: 1fr 1fr;
    }
    .fs-related-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════
   BOUTIQUE — Archive WooCommerce (woocommerce/archive-product.php)
   ═══════════════════════════════════════════════════════════ */

/* ── Hero ── */
.shop-hero {
    background: var(--ivory-warm);
    padding: 80px 0 72px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(197, 150, 58, 0.12);
}
.shop-hero-deco {
    position: absolute;
    top: -40px;
    right: 60px;
    font-family: var(--ff-serif);
    font-size: clamp(160px, 20vw, 260px);
    font-weight: 300;
    color: rgba(197, 150, 58, 0.06);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.shop-hero-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 64px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.shop-hero-text {
    flex: 1;
    min-width: 280px;
}
.shop-hero-h1 {
    font-family: var(--ff-serif);
    font-size: clamp(32px, 4.5vw, 58px);
    font-weight: 300;
    color: var(--text);
    line-height: 1.08;
    margin: 12px 0 20px;
}
.shop-hero-h1 em {
    color: var(--gold);
    font-style: italic;
}
.shop-hero-intro {
    font-family: var(--ff-sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.85;
    max-width: 520px;
    margin-top: 20px;
}
.shop-hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--ivory);
    border: 1px solid rgba(197, 150, 58, 0.18);
    padding: 28px 36px;
    flex-shrink: 0;
}
.shop-hero-stat {
    text-align: center;
}
.shop-hero-stat-n {
    font-family: var(--ff-serif);
    font-size: 30px;
    font-weight: 300;
    color: var(--text);
    line-height: 1;
}
.shop-hero-stat-n span {
    color: var(--gold);
    font-size: 18px;
}
.shop-hero-stat-l {
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    line-height: 1.5;
    margin-top: 6px;
}
.shop-hero-stat-sep {
    width: 1px;
    height: 40px;
    background: rgba(197, 150, 58, 0.2);
    flex-shrink: 0;
}

/* ── Filtres catégories ── */
.shop-filters {
    background: var(--ivory);
    border-bottom: 1px solid rgba(197, 150, 58, 0.1);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 40;
}
.shop-filters-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.shop-filters-inner::-webkit-scrollbar {
    display: none;
}
.shop-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--ff-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-light);
    background: transparent;
    border: 1.5px solid rgba(197, 150, 58, 0.2);
    padding: 8px 16px;
    white-space: nowrap;
    transition: all 0.2s;
    text-decoration: none;
}
.shop-filter-pill:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.shop-filter-pill.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ivory);
}
.shop-filter-count {
    font-size: 9px;
    opacity: 0.7;
    background: rgba(255, 255, 255, 0.2);
    padding: 1px 5px;
    border-radius: 2px;
}
.shop-filter-pill.active .shop-filter-count {
    background: rgba(255, 255, 255, 0.25);
}

/* ── Section produits ── */
.shop-section {
    background: var(--ivory);
    padding: 64px 0 96px;
}

/* Barre résultats */
.shop-results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(197, 150, 58, 0.12);
}
.shop-results-count {
    font-family: var(--ff-sans);
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.shop-results-reset {
    font-family: var(--ff-sans);
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: opacity 0.2s;
}
.shop-results-reset:hover {
    opacity: 0.65;
}

/* Grille produits */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

/* Carte produit */
.shop-card {
    background: var(--ivory-deep);
    display: flex;
    flex-direction: column;
    transition:
        background 0.25s,
        transform 0.25s,
        box-shadow 0.25s;
}
.shop-card:hover {
    background: var(--gold-pale);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(197, 150, 58, 0.12);
    z-index: 1;
    position: relative;
}
.shop-card-img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--ivory-warm);
}
.shop-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition:
        transform 0.5s,
        filter 0.3s;
    filter: brightness(0.94);
}
.shop-card:hover .shop-card-img-wrap img {
    transform: scale(1.05);
    filter: brightness(0.88);
}
.shop-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ivory-deep);
    min-height: 200px;
}
.shop-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--ff-sans);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 10px;
}
.shop-card-badge--out {
    background: var(--text);
    color: var(--ivory);
}
.shop-card-badge--sale {
    background: var(--gold);
    color: var(--ivory);
}

.shop-card-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.shop-card-cat {
    font-family: var(--ff-sans);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 6px;
}
.shop-card-title {
    font-family: var(--ff-serif);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 10px;
}
.shop-card-title a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}
.shop-card-title a:hover {
    color: var(--gold);
}
.shop-card-desc {
    font-family: var(--ff-sans);
    font-size: 12px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 0 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.shop-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(197, 150, 58, 0.1);
}
.shop-card-price {
    font-family: var(--ff-serif);
    font-size: 18px;
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}
.shop-card-price del {
    color: var(--text-light);
    font-size: 13px;
    margin-right: 4px;
    font-style: normal;
}
.shop-card-btn {
    font-family: var(--ff-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text);
    border: 1.5px solid rgba(197, 150, 58, 0.3);
    padding: 8px 14px;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}
.shop-card-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ivory);
}

/* Vide */
.shop-empty {
    text-align: center;
    padding: 80px 24px;
}
.shop-empty-text {
    font-family: var(--ff-sans);
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}
.shop-empty-text a {
    color: var(--gold);
}

/* Pagination */
.shop-pagination {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 64px;
}
.shop-pagination .page-numbers {
    font-family: var(--ff-sans);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--text-light);
    border: 1.5px solid rgba(197, 150, 58, 0.2);
    padding: 10px 16px;
    text-decoration: none;
    transition: all 0.2s;
}
.shop-pagination .page-numbers:hover,
.shop-pagination .page-numbers.current {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ivory);
}
.shop-pagination .page-numbers.dots {
    border-color: transparent;
    cursor: default;
}

/* ── CTA ── */
.shop-cta {
    background: var(--ivory-deep);
    padding: 80px 0;
    border-top: 1px solid rgba(197, 150, 58, 0.12);
}
.shop-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}
.shop-cta-h2 {
    font-family: var(--ff-serif);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 300;
    color: var(--text);
    line-height: 1.1;
    margin: 12px 0 20px;
}
.shop-cta-h2 em {
    color: var(--gold);
    font-style: italic;
}
.shop-cta-text {
    font-family: var(--ff-sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 420px;
}
.shop-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .shop-hero-content {
        gap: 40px;
    }
    .shop-hero-stats {
        padding: 22px 28px;
        gap: 24px;
    }
}
@media (max-width: 768px) {
    .shop-hero {
        padding: 60px 0 52px;
    }
    .shop-hero-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .shop-hero-stats {
        width: 100%;
        justify-content: center;
        flex-direction: column;
    }
    .shop-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .shop-cta-actions {
        flex-direction: row;
    }
    .anchor-nav-inner,
    #anchor-nav {
        display: none;
    }
    .hero-stat {
        flex-direction: column;
    }
    .ctaf-inner {
        grid-template-columns: 1fr;
    }
    .cs-why-inner,
    .cs-experience-inner {
        grid-template-columns: 1fr !important;
    }
}
@media (max-width: 580px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }
    .shop-pagination {
        flex-wrap: wrap;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SINGLE PRODUCT — sprod-*
═══════════════════════════════════════════════════════════════ */

/* ── Breadcrumb ── */
.sprod-breadcrumb-wrap {
    background: var(--ivory-deep);
    border-bottom: 1px solid rgba(197, 150, 58, 0.1);
    padding: 14px 0;
}
.sprod-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-family: var(--ff-sans);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--text-light);
}
.sprod-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
}
.sprod-breadcrumb a:hover {
    color: var(--gold);
}
.sprod-bc-sep {
    color: rgba(197, 150, 58, 0.5);
}
.sprod-bc-current {
    color: var(--text);
    font-weight: 500;
}

/* ── Hero split ── */
.sprod-hero {
    background: var(--ivory);
    padding: 64px 0 80px;
}
.sprod-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

/* ── Galerie ── */
.sprod-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sprod-gallery-main {
    position: relative;
    background: var(--ivory-deep);
    border-radius: 2px;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.sprod-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.sprod-gallery-main:hover img {
    transform: scale(1.03);
}
.sprod-gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ivory-deep);
}
.sprod-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 2px;
}
.sprod-badge--sale {
    background: var(--gold);
    color: white;
}
.sprod-badge--out {
    background: var(--text-light);
    color: white;
}

.sprod-gallery-thumbs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.sprod-thumb {
    width: 72px;
    height: 72px;
    border: 1.5px solid transparent;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    background: var(--ivory-deep);
    transition: border-color 0.2s;
    flex-shrink: 0;
}
.sprod-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sprod-thumb:hover {
    border-color: rgba(197, 150, 58, 0.5);
}
.sprod-thumb.active {
    border-color: var(--gold);
}

/* ── Infos produit ── */
.sprod-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.sprod-info-cat {
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin: 0 0 14px;
}
.sprod-info-cat a {
    color: var(--gold);
    text-decoration: none;
}
.sprod-info-title {
    font-family: var(--ff-serif);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text);
    margin: 0 0 20px;
}
.sprod-info-goldline {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 24px;
}

/* Prix WooCommerce */
.sprod-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.sprod-price-wrap .price {
    font-family: var(--ff-serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--text);
    line-height: 1;
}
.sprod-price-wrap .price ins {
    color: var(--gold);
    text-decoration: none;
}
.sprod-price-wrap .price del {
    font-size: 18px;
    color: var(--text-light);
    opacity: 0.7;
}
.sprod-savings {
    font-family: var(--ff-sans);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--gold);
    background: var(--gold-pale);
    border: 1px solid rgba(197, 150, 58, 0.2);
    padding: 4px 10px;
    border-radius: 2px;
}

/* Stock */
.sprod-stock {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--ff-sans);
    font-size: 12px;
    font-weight: 400;
    margin: 0 0 20px;
    letter-spacing: 0.04em;
}
.sprod-stock--in {
    color: var(--text-light);
}
.sprod-stock--out {
    color: #999;
}

/* Description courte */
.sprod-short-desc {
    font-family: var(--ff-sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 28px;
}
.sprod-short-desc p {
    margin: 0 0 10px;
}
.sprod-short-desc p:last-child {
    margin: 0;
}

/* Add to cart WooCommerce — surcharge du style natif */
.sprod-atc-wrap {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(197, 150, 58, 0.12);
}
.sprod-atc-wrap form.cart {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.sprod-atc-wrap .quantity {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid rgba(197, 150, 58, 0.3);
    border-radius: 2px;
    overflow: hidden;
}
.sprod-atc-wrap .quantity input[type="number"] {
    width: 56px;
    text-align: center;
    border: none;
    background: var(--ivory);
    font-family: var(--ff-sans);
    font-size: 14px;
    color: var(--text);
    padding: 12px 0;
    -moz-appearance: textfield;
}
.sprod-atc-wrap .quantity input[type="number"]::-webkit-inner-spin-button,
.sprod-atc-wrap .quantity input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}
.sprod-atc-wrap button[type="submit"].single_add_to_cart_button,
.sprod-atc-wrap .single_add_to_cart_button {
    font-family: var(--ff-sans);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
    background: var(--black);
    color: var(--ivory);
    border: 1.5px solid var(--black);
    padding: 14px 32px;
    cursor: pointer;
    transition:
        background 0.25s,
        color 0.25s;
    border-radius: 0;
    flex: 1;
    min-width: 180px;
}
.sprod-atc-wrap button[type="submit"].single_add_to_cart_button:hover,
.sprod-atc-wrap .single_add_to_cart_button:hover {
    background: transparent;
    color: var(--black);
}
.sprod-atc-wrap button.disabled,
.sprod-atc-wrap .single_add_to_cart_button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Rassurances */
.sprod-trust {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.sprod-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-sans);
    font-size: 12px;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 0.03em;
}

/* Méta SKU/tags */
.sprod-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 20px;
    border-top: 1px solid rgba(197, 150, 58, 0.1);
}
.sprod-meta-item {
    font-family: var(--ff-sans);
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.05em;
}
.sprod-meta-label {
    font-weight: 500;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 10px;
    margin-right: 6px;
}
.sprod-meta-item a {
    color: var(--gold);
    text-decoration: none;
}

/* ── Description complète ── */
.sprod-desc-section {
    background: var(--ivory-deep);
    padding: 88px 0;
}
.sprod-desc-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    align-items: start;
}
.sprod-desc-sidebar {
    position: sticky;
    top: 100px;
}
.sprod-desc-h2 {
    font-family: var(--ff-serif);
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text);
    margin: 12px 0 16px;
}
.sprod-desc-h2 em {
    color: var(--gold);
    font-style: italic;
}
.sprod-desc-line {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 28px;
}
.sprod-desc-content {
    font-family: var(--ff-sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-light);
}
.sprod-desc-content h2,
.sprod-desc-content h3 {
    font-family: var(--ff-serif);
    font-weight: 300;
    color: var(--text);
    margin: 32px 0 12px;
}
.sprod-desc-content h2 {
    font-size: 24px;
}
.sprod-desc-content h3 {
    font-size: 19px;
}
.sprod-desc-content p {
    margin: 0 0 16px;
}
.sprod-desc-content ul,
.sprod-desc-content ol {
    padding-left: 20px;
    margin: 0 0 16px;
}
.sprod-desc-content li {
    margin-bottom: 6px;
}
.sprod-desc-content strong {
    font-weight: 500;
    color: var(--text);
}

/* ── Produits associés ── */
.sprod-related {
    background: var(--ivory);
    padding: 88px 0;
}
.sprod-related-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 48px;
}
.sprod-related-h2 {
    font-family: var(--ff-serif);
    font-size: clamp(26px, 2.8vw, 40px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text);
    margin: 12px 0 0;
}
.sprod-related-h2 em {
    color: var(--gold);
    font-style: italic;
}
.sprod-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.sprod-rcard {
    display: block;
    text-decoration: none;
    background: var(--ivory-deep);
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.sprod-rcard:hover {
    box-shadow: 0 8px 32px rgba(197, 150, 58, 0.1);
}
.sprod-rcard-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--ivory-warm);
}
.sprod-rcard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.sprod-rcard:hover .sprod-rcard-img img {
    transform: scale(1.05);
}
.sprod-rcard-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sprod-rcard-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sprod-rcard-cat {
    font-family: var(--ff-sans);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}
.sprod-rcard-title {
    font-family: var(--ff-serif);
    font-size: 18px;
    font-weight: 300;
    color: var(--text);
    line-height: 1.25;
    margin: 0;
}
.sprod-rcard-price {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}
.sprod-rcard-price .price {
    font-family: var(--ff-sans);
}

/* ── CTA retour boutique ── */
.sprod-back-cta {
    background: var(--ivory-warm);
    padding: 80px 0;
    border-top: 1px solid rgba(197, 150, 58, 0.1);
}
.sprod-back-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}
.sprod-back-h2 {
    font-family: var(--ff-serif);
    font-size: clamp(26px, 2.5vw, 38px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text);
    margin: 12px 0 16px;
}
.sprod-back-h2 em {
    color: var(--gold);
    font-style: italic;
}
.sprod-back-line {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 16px;
}
.sprod-back-sub {
    font-family: var(--ff-sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 440px;
    margin: 0;
}
.sprod-back-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .sprod-hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .sprod-desc-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sprod-desc-sidebar {
        position: static;
    }
    .sprod-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .sprod-hero {
        padding: 40px 0 56px;
    }
    .sprod-desc-section,
    .sprod-related,
    .sprod-back-cta {
        padding: 56px 0;
    }
    .sprod-back-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .sprod-back-actions {
        flex-direction: row;
    }
    .sprod-atc-wrap form.cart {
        flex-direction: column;
        align-items: stretch;
    }
    .sprod-atc-wrap .single_add_to_cart_button {
        width: 100%;
    }
}
@media (max-width: 580px) {
    .sprod-related-grid {
        grid-template-columns: 1fr;
    }
    .sprod-gallery-thumbs .sprod-thumb {
        width: 60px;
        height: 60px;
    }
    .sprod-back-actions {
        flex-direction: column;
    }
}

/* ═══════════════════════════════════════════════════════════════
   PAGE À PROPOS — version luxe éditorial
═══════════════════════════════════════════════════════════════ */

/* ── Hero ──────────────────────────────────────────────────── */
#ap-hero {
    background: var(--ivory-warm);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}
.ap-hero-deco-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold) 40%, var(--gold) 60%, transparent);
    opacity: 0.45;
}
.ap-hero-deco-letter {
    position: absolute;
    top: -60px;
    right: -40px;
    font-family: var(--ff-serif);
    font-size: clamp(220px, 28vw, 400px);
    font-weight: 300;
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 1px rgba(197, 150, 58, 0.07);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}
.ap-hero-inner {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 72px;
    align-items: center;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
}
.ap-hero-left {
    display: flex;
    flex-direction: column;
}
.ap-hero-tag {
    margin-bottom: 20px;
}
.ap-hero-h1 {
    font-family: var(--ff-serif);
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 300;
    line-height: 1.06;
    color: var(--text);
    margin: 0 0 28px;
    letter-spacing: -0.01em;
}
.ap-hero-h1 em {
    color: var(--gold);
    font-style: italic;
}
.ap-hero-goldline {
    width: 52px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin-bottom: 28px;
}
.ap-hero-sub {
    font-family: var(--ff-sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 2;
    color: var(--text-light);
    max-width: 460px;
    margin-bottom: 40px;
}
.ap-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Colonne photo */
.ap-hero-right {
    position: relative;
    align-self: end;
}
.ap-hero-img-frame {
    position: relative;
}
.ap-hero-img-frame::after {
    content: "";
    position: absolute;
    top: 18px;
    right: -14px;
    width: calc(100% - 18px);
    height: calc(100% - 18px);
    border: 1px solid rgba(197, 150, 58, 0.22);
    border-radius: 2px;
    pointer-events: none;
    z-index: 0;
}
.ap-hero-img-wrap {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    aspect-ratio: 4/5;
    z-index: 1;
}
.ap-hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ap-hero-img-wrap:hover img {
    transform: scale(1.04);
}
.ap-hero-img-deco {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(197, 150, 58, 0.07) 100%);
    pointer-events: none;
}

/* Badge Qualiopi */
.ap-qualiopi-badge {
    position: absolute;
    bottom: -22px;
    left: -22px;
    background: var(--ivory);
    border: 1px solid rgba(197, 150, 58, 0.3);
    box-shadow: 0 12px 40px rgba(197, 150, 58, 0.16);
    padding: 16px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    border-radius: 2px;
    min-width: 118px;
    z-index: 2;
}
.ap-qua-badge-label {
    font-family: var(--ff-sans);
    font-size: 8px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-light);
}
.ap-qua-badge-title {
    font-family: var(--ff-sans);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--gold);
}
.ap-qua-badge-year {
    font-family: var(--ff-sans);
    font-size: 9px;
    color: var(--text-light);
    letter-spacing: 0.1em;
}

/* Stats band */
.ap-hero-stats-band {
    background: var(--ivory);
    border-top: 1px solid rgba(197, 150, 58, 0.1);
    margin-top: 40px;
}
.ap-hero-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.ap-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px 34px;
    border-right: 1px solid rgba(197, 150, 58, 0.1);
    gap: 6px;
    position: relative;
    overflow: hidden;
    transition: background 0.35s;
    cursor: default;
}
.ap-stat::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.45s ease;
}
.ap-stat:hover::after {
    transform: scaleX(1);
}
.ap-stat:hover {
    background: var(--gold-pale);
}
.ap-stat:last-child {
    border-right: none;
}
.ap-stat-n {
    font-family: var(--ff-serif);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 300;
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.02em;
}
.ap-stat-label {
    font-family: var(--ff-sans);
    font-size: 10px;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.ap-stat-detail {
    font-family: var(--ff-sans);
    font-size: 11px;
    color: var(--gold);
    font-weight: 300;
    font-style: italic;
}

/* ── Histoire ──────────────────────────────────────────────── */
#ap-histoire {
    background: var(--ivory);
    padding: 112px 0;
}
.ap-hist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: start;
}
.ap-hist-h2 {
    font-family: var(--ff-serif);
    font-size: clamp(30px, 3.5vw, 50px);
    font-weight: 300;
    line-height: 1.08;
    color: var(--text);
    margin: 14px 0 22px;
    letter-spacing: -0.01em;
}
.ap-hist-h2 em {
    color: var(--gold);
    font-style: italic;
}
.ap-hist-goldline {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin-bottom: 32px;
}
.ap-hist-p {
    font-family: var(--ff-sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Blockquote redesigné */
.ap-hist-quote {
    position: relative;
    margin: 36px 0;
    padding: 28px 28px 28px 52px;
    background: var(--gold-pale);
    border-left: none;
    border-radius: 2px;
    overflow: hidden;
}
.ap-hist-quote::before {
    content: "\201C";
    position: absolute;
    top: -10px;
    left: 8px;
    font-family: var(--ff-serif);
    font-size: 96px;
    font-weight: 300;
    font-style: italic;
    color: var(--gold);
    opacity: 0.28;
    line-height: 1;
    pointer-events: none;
}
.ap-hist-quote p {
    font-family: var(--ff-serif);
    font-size: clamp(15px, 1.7vw, 19px);
    font-weight: 300;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}
.ap-hist-quote cite {
    display: block;
    margin-top: 12px;
    font-family: var(--ff-sans);
    font-size: 10px;
    font-style: normal;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    position: relative;
    z-index: 1;
}

/* Photo histoire */
.ap-hist-side {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.ap-hist-photo {
    position: relative;
}
.ap-hist-photo-inner {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    aspect-ratio: 3/4;
}
.ap-hist-photo-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ap-hist-photo-inner:hover img {
    transform: scale(1.04);
}
.ap-hist-photo-deco {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(0deg, rgba(197, 150, 58, 0.06) 0%, transparent 100%);
    pointer-events: none;
}
.ap-hist-photo-accent {
    position: absolute;
    bottom: -14px;
    right: -14px;
    width: 72px;
    height: 72px;
    border-right: 1px solid rgba(197, 150, 58, 0.35);
    border-bottom: 1px solid rgba(197, 150, 58, 0.35);
    pointer-events: none;
}
.ap-hist-photo-years {
    position: absolute;
    top: 28px;
    left: -18px;
    background: var(--ivory);
    border: 1px solid rgba(197, 150, 58, 0.22);
    padding: 14px 18px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(197, 150, 58, 0.12);
    z-index: 2;
}
.ap-hist-photo-years-n {
    font-family: var(--ff-serif);
    font-size: 26px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    display: block;
}
.ap-hist-photo-years-label {
    font-family: var(--ff-sans);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
    margin-top: 4px;
}

/* Timeline */
.ap-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
.ap-timeline::before {
    content: "";
    position: absolute;
    left: 44px;
    top: 36px;
    bottom: 20px;
    width: 1px;
    background: linear-gradient(180deg, rgba(197, 150, 58, 0.3) 0%, rgba(197, 150, 58, 0.14) 60%, rgba(197, 150, 58, 0.03) 100%);
    pointer-events: none;
}
.ap-timeline-item {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 0;
    padding-bottom: 36px;
    position: relative;
    cursor: default;
}
.ap-timeline-item:last-child {
    padding-bottom: 0;
}
.ap-timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 2px;
    position: relative;
    z-index: 1;
}
.ap-timeline-year {
    font-family: var(--ff-serif);
    font-size: 28px;
    font-weight: 300;
    font-style: italic;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.02em;
}
.ap-timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--ivory-warm);
    border: 1.5px solid rgba(197, 150, 58, 0.55);
    flex-shrink: 0;
    transition:
        background 0.3s,
        border-color 0.3s,
        box-shadow 0.35s;
    position: relative;
    z-index: 2;
}
.ap-timeline-item:hover .ap-timeline-dot {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow:
        0 0 0 5px rgba(197, 150, 58, 0.13),
        0 0 0 9px rgba(197, 150, 58, 0.05);
}
.ap-timeline-body {
    padding: 4px 0 0 18px;
    border-left: 1px solid transparent;
    transition:
        border-color 0.35s,
        padding-left 0.35s;
}
.ap-timeline-item:hover .ap-timeline-body {
    border-left-color: rgba(197, 150, 58, 0.22);
    padding-left: 22px;
}
.ap-timeline-titre {
    font-family: var(--ff-serif);
    font-size: 16px;
    font-weight: 300;
    color: var(--text);
    margin: 0 0 8px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.ap-timeline-texte {
    font-family: var(--ff-sans);
    font-size: 12px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.85;
    margin: 0;
}

/* ── Valeurs ───────────────────────────────────────────────── */
#ap-valeurs {
    background: var(--ivory-deep);
    padding: 112px 0;
}
.ap-val-header {
    text-align: center;
    margin-bottom: 64px;
}
.ap-val-h2 {
    font-family: var(--ff-serif);
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text);
    margin: 14px 0 0;
    letter-spacing: -0.01em;
}
.ap-val-h2 em {
    color: var(--gold);
    font-style: italic;
}
.ap-val-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}
.ap-val-card {
    background: var(--ivory);
    padding: 44px 32px 48px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.ap-val-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s ease;
}
.ap-val-card:hover::before {
    transform: scaleX(1);
}
.ap-val-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(197, 150, 58, 0.1);
}
.ap-val-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(197, 150, 58, 0.22);
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--gold);
    transition:
        background 0.3s,
        border-color 0.3s;
    flex-shrink: 0;
}
.ap-val-card:hover .ap-val-icon-wrap {
    background: rgba(197, 150, 58, 0.12);
    border-color: rgba(197, 150, 58, 0.4);
}
.ap-val-icon {
    color: var(--gold);
    display: flex;
}
.ap-val-titre {
    font-family: var(--ff-serif);
    font-size: 22px;
    font-weight: 300;
    color: var(--text);
    margin: 0 0 14px;
    letter-spacing: -0.01em;
}
.ap-val-line {
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 18px;
}
.ap-val-texte {
    font-family: var(--ff-sans);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-light);
    margin: 0;
}

/* ── Qualiopi ──────────────────────────────────────────────── */
#ap-qualiopi {
    background: var(--ivory-warm);
    padding: 104px 0;
    border-top: 1px solid rgba(197, 150, 58, 0.12);
    border-bottom: 1px solid rgba(197, 150, 58, 0.12);
    position: relative;
    overflow: hidden;
}
#ap-qualiopi::before {
    content: "Q";
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--ff-serif);
    font-size: clamp(280px, 35vw, 500px);
    font-weight: 300;
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 1px rgba(197, 150, 58, 0.045);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.ap-qua-inner {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 96px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.ap-qua-seal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.ap-qua-seal-ring {
    width: 148px;
    height: 148px;
    border-radius: 50%;
    border: 1px solid rgba(197, 150, 58, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-pale);
    box-shadow:
        0 0 0 8px rgba(197, 150, 58, 0.06),
        0 0 0 16px rgba(197, 150, 58, 0.03),
        0 12px 40px rgba(197, 150, 58, 0.12);
}
.ap-qua-seal-ring svg {
    width: 68px;
    height: 68px;
}
.ap-qua-seal-text {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.ap-qua-seal-label {
    font-family: var(--ff-sans);
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-light);
}
.ap-qua-seal-name {
    font-family: var(--ff-sans);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--gold);
}
.ap-qua-seal-year {
    font-family: var(--ff-sans);
    font-size: 10px;
    color: var(--text-light);
    letter-spacing: 0.1em;
}
.ap-qua-h2 {
    font-family: var(--ff-serif);
    font-size: clamp(28px, 3vw, 46px);
    font-weight: 300;
    color: var(--text);
    line-height: 1.08;
    margin: 14px 0 22px;
    letter-spacing: -0.01em;
}
.ap-qua-h2 em {
    color: var(--gold);
    font-style: italic;
}
.ap-qua-goldline {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin-bottom: 24px;
}
.ap-qua-texte {
    font-family: var(--ff-sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 2;
    color: var(--text-light);
    max-width: 560px;
    margin-bottom: 28px;
}
.ap-qua-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 40px;
}
.ap-qua-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--text-light);
}

/* ── Témoignages ───────────────────────────────────────────── */
#ap-temoignages {
    background: var(--ivory);
    padding: 112px 0;
}
.ap-temo-header {
    margin-bottom: 56px;
}
.ap-temo-h2 {
    font-family: var(--ff-serif);
    font-size: clamp(30px, 3.5vw, 50px);
    font-weight: 300;
    color: var(--text);
    line-height: 1.08;
    margin: 14px 0 0;
    letter-spacing: -0.01em;
}
.ap-temo-h2 em {
    color: var(--gold);
    font-style: italic;
}
.ap-temo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.ap-temo-card {
    background: var(--ivory-deep);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(197, 150, 58, 0.08);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition:
        border-color 0.35s,
        box-shadow 0.35s,
        transform 0.35s;
}
.ap-temo-card::before {
    content: "\201C";
    position: absolute;
    top: 16px;
    left: 20px;
    font-family: var(--ff-serif);
    font-size: 88px;
    font-weight: 300;
    font-style: italic;
    color: var(--gold);
    opacity: 0.12;
    line-height: 1;
    pointer-events: none;
}
.ap-temo-card:hover {
    border-color: rgba(197, 150, 58, 0.28);
    box-shadow: 0 16px 48px rgba(197, 150, 58, 0.1);
    transform: translateY(-5px);
}
.ap-temo-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.ap-temo-stars {
    display: flex;
    gap: 3px;
}
.ap-temo-type {
    font-family: var(--ff-sans);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    border: 1px solid rgba(197, 150, 58, 0.25);
    padding: 4px 10px;
    border-radius: 2px;
}
.ap-temo-texte {
    font-family: var(--ff-serif);
    font-size: clamp(15px, 1.6vw, 17px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.75;
    color: var(--text);
    margin: 0 0 24px;
    flex: 1;
    position: relative;
    z-index: 1;
}
.ap-temo-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(197, 150, 58, 0.1);
}
.ap-temo-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-pale);
    border: 1px solid rgba(197, 150, 58, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-serif);
    font-size: 16px;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
    font-style: italic;
}
.ap-temo-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ap-temo-nom {
    font-family: var(--ff-sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}
.ap-temo-poste {
    font-family: var(--ff-sans);
    font-size: 11px;
    color: var(--text-light);
    font-weight: 300;
}

/* ── Strip CTA ─────────────────────────────────────────────── */
#ap-strip {
    background: var(--ivory-deep);
    border-top: 1px solid rgba(197, 150, 58, 0.1);
    padding: 104px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}
#ap-strip::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 560px;
    height: 560px;
    border-radius: 50%;
    border: 1px solid rgba(197, 150, 58, 0.07);
    pointer-events: none;
}
#ap-strip::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 880px;
    height: 880px;
    border-radius: 50%;
    border: 1px solid rgba(197, 150, 58, 0.04);
    pointer-events: none;
}
.ap-strip-label {
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.ap-strip-h2 {
    font-family: var(--ff-serif);
    font-size: clamp(32px, 4vw, 58px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text);
    margin: 0;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}
.ap-strip-h2 em {
    color: var(--gold);
    font-style: italic;
}
.ap-strip-cta {
    position: relative;
    z-index: 1;
}

/* ── Scroll-reveal ─────────────────────────────────────────── */
.ap-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}
.ap-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.ap-reveal-delay-1 {
    transition-delay: 0.08s;
}
.ap-reveal-delay-2 {
    transition-delay: 0.18s;
}
.ap-reveal-delay-3 {
    transition-delay: 0.28s;
}
.ap-reveal-delay-4 {
    transition-delay: 0.38s;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .ap-hero-inner {
        grid-template-columns: 1fr 400px;
        gap: 56px;
    }
}
@media (max-width: 1024px) {
    .ap-hero-inner {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .ap-hero-stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .ap-stat {
        border-right: none;
        border-bottom: 1px solid rgba(197, 150, 58, 0.1);
    }
    .ap-stat:nth-child(2n) {
        border-right: none;
    }
    .ap-hist-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }
    .ap-val-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ap-qua-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .ap-qua-goldline {
        margin-left: auto;
        margin-right: auto;
    }
    .ap-qua-texte {
        max-width: 100%;
    }
    .ap-qua-list {
        grid-template-columns: 1fr;
    }
    .ap-temo-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
@media (max-width: 768px) {
    #ap-histoire,
    #ap-valeurs,
    #ap-temoignages {
        padding: 72px 0;
    }
    #ap-qualiopi,
    #ap-strip {
        padding: 64px 0;
    }
    .ap-hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }
    .ap-val-grid {
        grid-template-columns: 1fr;
    }
    .ap-hist-quote {
        padding: 24px 20px 24px 36px;
    }
    .ap-hist-photo-years {
        left: -10px;
    }
}
@media (max-width: 580px) {
    .ap-hero-stats-inner {
        grid-template-columns: 1fr 1fr;
    }
    .ap-temo-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================================================
   CHECKOUT — Page de validation de commande
   =========================================================== */

/* ── Container spécifique checkout (évite conflits) ── */
.chk-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ── Breadcrumb ── */
.chk-breadcrumb-wrap {
    padding-top: 96px;
    padding-bottom: 0;
    background: var(--ivory);
}
.chk-breadcrumb-wrap .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-sans);
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.08em;
}
.chk-breadcrumb-wrap .breadcrumb a {
    color: var(--text-light);
    transition: color 0.2s;
}
.chk-breadcrumb-wrap .breadcrumb a:hover {
    color: var(--gold);
}
.chk-breadcrumb-wrap .breadcrumb-sep {
    color: rgba(197, 150, 58, 0.4);
}
.chk-breadcrumb-wrap .breadcrumb-current {
    color: var(--gold);
}

/* ── Header ── */
.chk-header {
    padding: 40px 0 48px;
    background: var(--ivory);
}
.chk-header-title {
    font-family: var(--ff-serif);
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 300;
    color: var(--text);
    line-height: 1.1;
    margin: 12px 0 0;
}
.chk-header-title em {
    color: var(--gold);
    font-style: italic;
}

/* ── Composants réutilisables ── */
.chk-tag {
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--gold);
}
.chk-gold-line {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 16px 0;
    opacity: 0.65;
}
.chk-gold-line--sm {
    margin: 12px 0 24px;
}

/* ── Section principale ── */
.chk-section {
    background: var(--ivory);
    padding: 0 0 96px;
}

/* ══ LAYOUT GLOBAL DU FORMULAIRE ══
   Structure :
   - .chk-order-summary  → pleine largeur (produits)
   - .chk-bottom-row     → 2 colonnes (infos client | paiement)
*/
.chk-form {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* ── Bloc générique ── */
.chk-block {
    background: var(--ivory-deep);
    padding: 40px;
    border-top: 2px solid transparent;
    transition: border-color 0.25s;
}
.chk-block:focus-within {
    border-color: rgba(197, 150, 58, 0.35);
}
.chk-block-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}
.chk-step-num {
    font-family: var(--ff-serif);
    font-size: 13px;
    color: rgba(197, 150, 58, 0.45);
    font-weight: 300;
    letter-spacing: 0.05em;
}
.chk-block-title {
    font-family: var(--ff-serif);
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 300;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 0;
}
.chk-block-title em {
    color: var(--gold);
    font-style: italic;
}

/* ══ ÉTAPE 1 : Récapitulatif produits (pleine largeur) ══ */
.chk-order-summary {
    background: var(--ivory-deep);
    padding: 40px;
    border-top: 2px solid var(--gold);
}

/* Table produits */
.woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
}
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text);
    padding: 14px 0;
    border-bottom: 1px solid rgba(197, 150, 58, 0.1);
    vertical-align: middle;
}
.woocommerce-checkout-review-order-table thead th {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 500;
    padding-bottom: 16px;
}
.woocommerce-checkout-review-order-table .product-name {
    font-size: 14px;
    color: var(--text);
    font-weight: 400;
}
.woocommerce-checkout-review-order-table .product-name .product-quantity {
    font-size: 11px;
    color: var(--text-light);
    margin-left: 4px;
}
.woocommerce-checkout-review-order-table .product-total {
    text-align: right;
    font-size: 14px;
    color: var(--text);
}
.woocommerce-checkout-review-order-table .cart-subtotal th,
.woocommerce-checkout-review-order-table .cart-subtotal td,
.woocommerce-checkout-review-order-table .woocommerce-shipping-totals th,
.woocommerce-checkout-review-order-table .woocommerce-shipping-totals td,
.woocommerce-checkout-review-order-table .tax-rate th,
.woocommerce-checkout-review-order-table .tax-rate td {
    font-size: 12px;
    color: var(--text-light);
    border-bottom: 1px solid rgba(197, 150, 58, 0.07);
}
.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
    font-family: var(--ff-serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--text);
    border-bottom: none;
    border-top: 1.5px solid rgba(197, 150, 58, 0.25);
    padding-top: 20px;
}
.woocommerce-checkout-review-order-table .order-total td strong {
    color: var(--gold);
    font-weight: 400;
}
.woocommerce-checkout-review-order-table .woocommerce-shipping-totals td ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.woocommerce-checkout-review-order-table .woocommerce-shipping-totals td ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    font-size: 12px;
}
.woocommerce-checkout-review-order-table .woocommerce-shipping-totals td ul li input[type="radio"] {
    accent-color: var(--gold);
}

/* ══ Express checkout (Apple Pay / Google Pay) — pleine largeur ══ */
.chk-express {
    margin: 2px 0;
}
.chk-express:empty {
    display: none;
}

/* ══ ÉTAPE 2 : Ligne infos + paiement ══ */
.chk-bottom-row {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 2px;
    align-items: start;
}

/* Placement explicite des 2 colonnes : empêche les éléments cachés
   injectés par WooCommerce/Stripe de décaler la grille. */
.chk-customer {
    grid-column: 1;
    grid-row: 1;
}
.chk-payment-col {
    grid-column: 2;
    grid-row: 1;
}
span.woocommerce-Price-amount.amount {
    text-align: right;
    margin-left: auto;
    width: 100%;
    display: block;
}

/* Neutralise les champs cachés d'attribution de commande qui, sinon,
   occuperaient une cellule de la grille. */
.chk-bottom-row > wc-order-attribution-inputs {
    display: none;
}

/* ── Colonne gauche : Infos client ── */
.chk-customer {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* ── Colonne droite : Paiement ── */
.chk-payment-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: sticky;
    top: 92px;
}
.chk-block--payment {
    border-top: 2px solid rgba(197, 150, 58, 0.4);
}

/* ══════════════════════════════════════════
   WOOCOMMERCE CHECKOUT — Champs de formulaire
══════════════════════════════════════════ */

.woocommerce-checkout .form-row label,
.woocommerce-checkout .woocommerce-form__label {
    display: block;
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 8px;
}
.woocommerce-checkout .form-row .required {
    color: var(--gold);
    font-style: normal;
}

.woocommerce-checkout .form-row input[type="text"],
.woocommerce-checkout .form-row input[type="email"],
.woocommerce-checkout .form-row input[type="tel"],
.woocommerce-checkout .form-row input[type="number"],
.woocommerce-checkout .form-row input[type="password"],
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout select2-container .select2-selection {
    width: 100%;
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text);
    background: var(--ivory);
    border: 1.5px solid rgba(197, 150, 58, 0.2);
    padding: 14px 16px;
    outline: none;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
}
.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197, 150, 58, 0.08);
}
.woocommerce-checkout .form-row input::placeholder,
.woocommerce-checkout .form-row textarea::placeholder {
    color: rgba(0, 0, 0, 0.25);
    font-size: 12px;
}
.woocommerce-checkout .form-row textarea {
    min-height: 90px;
    resize: vertical;
}
.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
    width: calc(50% - 8px);
    float: left;
}
.woocommerce-checkout .form-row-first {
    margin-right: 8px;
}
.woocommerce-checkout .form-row-last {
    margin-left: 8px;
}
.woocommerce-checkout .form-row-wide {
    clear: both;
}
.woocommerce-checkout .form-row {
    margin-bottom: 16px;
}
.woocommerce-checkout .clear {
    clear: both;
}

.woocommerce-checkout .form-row.woocommerce-invalid input,
.woocommerce-checkout .form-row.woocommerce-invalid select {
    border-color: rgba(180, 60, 60, 0.5);
}
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-invalid-required-field .woocommerce-error {
    font-family: var(--ff-sans);
    font-size: 11px;
    color: #b43c3c;
    margin-top: 4px;
}

/* Select2 */
.woocommerce-checkout .select2-container--default .select2-selection--single {
    background: var(--ivory);
    border: 1.5px solid rgba(197, 150, 58, 0.2);
    border-radius: 0;
    height: auto;
    padding: 14px 16px;
}
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text);
    line-height: 1.4;
    padding: 0;
}
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    top: 0;
    right: 12px;
}
.woocommerce-checkout .select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--gold);
}
.select2-dropdown {
    border: 1.5px solid rgba(197, 150, 58, 0.25);
    border-radius: 0;
    font-family: var(--ff-sans);
    font-size: 13px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: var(--gold);
    color: var(--black);
}

/* Checkbox livraison différente */
.woocommerce-checkout .woocommerce-shipping-fields h3 label,
.woocommerce-checkout #ship-to-different-address label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ff-sans);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: none;
    color: var(--text);
    cursor: pointer;
}
.woocommerce-checkout #ship-to-different-address input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--gold);
    cursor: pointer;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════
   WOOCOMMERCE — Méthode de paiement (Stripe UPE)
══════════════════════════════════════════ */
#payment {
    background: transparent;
    border-top: none;
    margin-top: 0;
}

/* Liste des passerelles — Stripe étant l'unique méthode, on masque
   le radio + le libellé « Stripe » redondants (l'accordéon Stripe
   affiche déjà Carte bancaire / Klarna à l'intérieur). */
#payment ul.payment_methods {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 0;
}
#payment ul.payment_methods li {
    margin: 0;
    padding: 0;
    border: 0;
}
#payment ul.payment_methods > li > input[type="radio"],
#payment ul.payment_methods > li > label {
    position: absolute !important;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* Panneau de paiement — encadré premium ivoire/or */
#payment .payment_box,
#payment .payment_box.payment_method_stripe {
    margin: 0;
    padding: 24px;
    background: var(--ivory);
    border: 1px solid rgba(197, 150, 58, 0.18);
    box-shadow: 0 4px 24px rgba(197, 150, 58, 0.06);
    font-family: var(--ff-sans);
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.7;
}
/* Supprime la flèche/triangle natif de WooCommerce */
#payment .payment_box::before {
    display: none;
}

/* Reset des fieldsets natifs (bordure + marge par défaut du navigateur) */
#payment fieldset {
    margin: 0;
    padding: 0;
    border: 0;
    min-width: 0;
}
#wc-stripe-upe-form,
.wc-stripe-upe-element {
    margin: 0;
}
#wc-stripe-currency-selector:empty {
    display: none;
}

/* Cartes enregistrées — masquées s'il n'en existe aucune */
#payment .wc-saved-payment-methods[data-count="0"] {
    display: none;
}
#payment .wc-saved-payment-methods {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#payment .wc-saved-payment-methods li {
    display: flex;
    align-items: center;
    gap: 10px;
}
#payment .wc-saved-payment-methods input[type="radio"] {
    accent-color: var(--gold);
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    margin: 0;
}
#payment .wc-saved-payment-methods label {
    margin: 0;
    font-size: 13px;
    letter-spacing: normal;
    text-transform: none;
    font-weight: 300;
    color: var(--text);
}

/* Champ carte rendu par Stripe : la passerelle lit le style calculé
   de cet input caché pour habiller son iframe — on lui transmet donc
   l'apparence ivoire/or du thème (sinon → champ gris par défaut). */
#wc-stripe-hidden-style-input {
    font-family: var(--ff-sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--text);
    background-color: var(--ivory);
    border: 1.5px solid rgba(197, 150, 58, 0.2);
    border-radius: 0;
    padding: 14px 16px;
    line-height: 1.4;
}

/* Erreurs de paiement Stripe */
#wc-stripe-upe-errors {
    font-family: var(--ff-sans);
    font-size: 11px;
    color: #b43c3c;
    margin-top: 8px;
}
#wc-stripe-upe-errors:empty {
    margin: 0;
}

/* Case « enregistrer mes informations de paiement » */
#payment .woocommerce-SavedPaymentMethods-saveNew {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0 0;
}
#payment .woocommerce-SavedPaymentMethods-saveNew input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--gold);
    margin: 0;
    flex-shrink: 0;
    cursor: pointer;
}
#payment .woocommerce-SavedPaymentMethods-saveNew label {
    margin: 0;
    font-size: 12px;
    letter-spacing: normal;
    text-transform: none;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
}

/* Séparateur « OU » de l'express checkout (Apple Pay / Google Pay) */
#wc-stripe-express-checkout-button-separator {
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--text-light);
}

/* Bouton « Commander » */
#payment .place-order {
    padding: 24px 0 0;
}
#payment #place_order,
.woocommerce-checkout .wc-proceed-to-checkout .checkout-button {
    display: block;
    width: 100%;
    font-family: var(--ff-sans);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 18px 32px;
    background: var(--gold);
    color: var(--black);
    border: 1.5px solid var(--gold);
    cursor: pointer;
    transition: all 0.25s;
    text-align: center;
    line-height: 1;
}
#payment #place_order:hover,
.woocommerce-checkout .wc-proceed-to-checkout .checkout-button:hover {
    background: transparent;
    color: var(--gold);
}
#payment .woocommerce-privacy-policy-text {
    font-family: var(--ff-sans);
    font-size: 10px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.7;
    margin-top: 14px;
}
#payment .woocommerce-privacy-policy-text a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ── Rassurances ── */
.chk-trust {
    background: var(--gold-pale);
    border: 1px solid rgba(197, 150, 58, 0.18);
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.chk-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ff-sans);
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 0.02em;
}
.chk-trust-item svg {
    flex-shrink: 0;
}

/* Loader WooCommerce */
.blockUI.blockOverlay {
    background: rgba(251, 248, 243, 0.75) !important;
    backdrop-filter: blur(4px);
}

/* ══════════════════════════════════════════
   WOOCOMMERCE — Messages de notification
══════════════════════════════════════════ */
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-message {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text);
    background: var(--ivory-deep);
    border-left: 3px solid var(--gold);
    padding: 16px 20px;
    margin-bottom: 2px;
    list-style: none;
}
.woocommerce-checkout .woocommerce-error {
    border-color: #b43c3c;
    background: rgba(180, 60, 60, 0.05);
    color: #b43c3c;
}

/* Lien "Retourner au panier" */
.woocommerce-checkout .return-to-cart {
    font-family: var(--ff-sans);
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    transition: color 0.2s;
}
.woocommerce-checkout .return-to-cart::before {
    content: "←";
    color: var(--gold);
    font-size: 14px;
}
.woocommerce-checkout .return-to-cart:hover {
    color: var(--gold);
}

/* Coupon / Login */
.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout .woocommerce-form-login-toggle {
    font-family: var(--ff-sans);
    font-size: 12px;
    color: var(--text-light);
    padding: 16px 0;
    border-bottom: 1px solid rgba(197, 150, 58, 0.1);
    margin-bottom: 2px;
}
.woocommerce-checkout .woocommerce-form-coupon-toggle a,
.woocommerce-checkout .woocommerce-form-login-toggle a {
    color: var(--gold);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.woocommerce-checkout .woocommerce-form-coupon,
.woocommerce-checkout .woocommerce-form-login {
    background: var(--ivory-deep);
    padding: 28px 32px;
    margin-bottom: 2px;
}
.woocommerce-checkout .woocommerce-form-coupon input[type="text"],
.woocommerce-checkout .woocommerce-form-login input[type="text"],
.woocommerce-checkout .woocommerce-form-login input[type="password"] {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text);
    background: var(--ivory);
    border: 1.5px solid rgba(197, 150, 58, 0.2);
    padding: 14px 16px;
    outline: none;
    width: 100%;
    transition: border-color 0.2s;
    border-radius: 0;
    margin-bottom: 12px;
}
.woocommerce-checkout .woocommerce-form-coupon input:focus,
.woocommerce-checkout .woocommerce-form-login input:focus {
    border-color: var(--gold);
}
.woocommerce-checkout .woocommerce-form-coupon .button,
.woocommerce-checkout .woocommerce-form-login .button {
    font-family: var(--ff-sans);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 13px 28px;
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
    cursor: pointer;
    transition: all 0.25s;
}
.woocommerce-checkout .woocommerce-form-coupon .button:hover,
.woocommerce-checkout .woocommerce-form-login .button:hover {
    background: var(--gold);
    color: var(--black);
}

/* ── Bloc code promo, déplacé sous « Méthode de paiement » ──
   Aligné sous la colonne paiement (même largeur, calé à droite). */
.chk-coupon {
    width: 420px;
    max-width: 100%;
    margin-left: auto;
    margin-top: 2px;
}
.chk-coupon .woocommerce-form-coupon-toggle {
    border-bottom: none;
    border-top: 2px solid rgba(197, 150, 58, 0.4);
    padding-top: 18px;
    margin-bottom: 2px;
}

/* ══════════════════════════════════════════
   CHECKOUT — Responsive
══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .chk-bottom-row {
        grid-template-columns: 1fr;
    }
    /* En une seule colonne, on empile : on annule le placement explicite. */
    .chk-customer,
    .chk-payment-col {
        grid-column: 1;
        grid-row: auto;
    }
    .chk-payment-col {
        position: static;
    }
    /* Code promo en pleine largeur quand les colonnes s'empilent. */
    .chk-coupon {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .chk-container {
        padding: 0 24px;
    }
    .chk-header {
        padding: 28px 0 36px;
    }
    .chk-block {
        padding: 28px 24px;
    }
    .chk-order-summary {
        padding: 28px 24px;
    }
    .woocommerce-checkout .form-row-first,
    .woocommerce-checkout .form-row-last {
        width: 100%;
        float: none;
        margin-left: 0;
        margin-right: 0;
    }
}

/* ===========================================================
   SINGLE BLOG POST
   =========================================================== */

/* ── Barre de progression ── */
.post-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gold);
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ── Hero ── */
.post-hero {
    position: relative;
    padding-top: 80px; /* nav height */
}
.post-hero--img {
    min-height: 58vh;
    display: flex;
    align-items: flex-end;
}
.post-hero--plain {
    background: var(--ivory-warm);
    padding-top: calc(80px + 64px);
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(197, 150, 58, 0.15);
}
.post-hero-bg {
    position: absolute;
    inset: 0;
}
.post-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
.post-hero-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 7, 3, 0.72) 0%, rgba(10, 7, 3, 0.28) 55%, transparent 100%);
}
.post-hero-inner {
    position: relative;
    z-index: 2;
    padding-bottom: 56px;
    padding-top: 48px;
    max-width: 800px;
}
.post-hero--plain .post-hero-inner {
    padding-bottom: 0;
    padding-top: 0;
}

/* Breadcrumb */
.post-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-sans);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.post-hero--img .post-breadcrumb {
    color: rgba(255, 255, 255, 0.6);
}
.post-hero--plain .post-breadcrumb {
    color: var(--text-light);
}
.post-hero--img .post-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
}
.post-hero--img .post-breadcrumb a:hover {
    color: var(--gold);
}
.post-hero--plain .post-breadcrumb a {
    color: var(--text-light);
}
.post-hero--plain .post-breadcrumb a:hover {
    color: var(--gold);
}

/* Catégorie badge */
.post-cat-badge {
    display: inline-block;
    font-family: var(--ff-sans);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 4px 10px;
    border: 1px solid rgba(197, 150, 58, 0.5);
    margin-bottom: 16px;
}

/* Titre hero */
.post-hero-title {
    font-family: var(--ff-serif);
    font-size: clamp(30px, 4vw, 54px);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 20px;
}
.post-hero--img .post-hero-title {
    color: var(--ivory);
}
.post-hero--plain .post-hero-title {
    color: var(--text);
}

/* Méta */
.post-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-family: var(--ff-sans);
    font-size: 12px;
}
.post-hero--img .post-meta-row {
    color: rgba(255, 255, 255, 0.65);
}
.post-hero--plain .post-meta-row {
    color: var(--text-light);
}
.post-meta-sep {
    font-size: 10px;
    opacity: 0.5;
}

/* ── Layout article ── */
.post-layout {
    background: var(--ivory);
    padding: 72px 0 80px;
}
.post-body {
    max-width: 740px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ── Typographie WYSIWYG ── */
.post-wysiwyg {
    font-family: var(--ff-sans);
    font-size: 15px;
    line-height: 1.85;
    color: var(--text);
}
.post-wysiwyg > * + * {
    margin-top: 1.5em;
}
.post-wysiwyg > *:first-child {
    margin-top: 0;
}

/* Headings */
.post-wysiwyg h2 {
    font-family: var(--ff-serif);
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 300;
    color: var(--text);
    line-height: 1.2;
    margin-top: 2.2em;
    margin-bottom: 0.5em;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(197, 150, 58, 0.2);
}
.post-wysiwyg h2 em {
    color: var(--gold);
    font-style: italic;
}
.post-wysiwyg h3 {
    font-family: var(--ff-serif);
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 400;
    color: var(--text);
    line-height: 1.25;
    margin-top: 1.8em;
    margin-bottom: 0.4em;
}
.post-wysiwyg h4 {
    font-family: var(--ff-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 1.6em;
    margin-bottom: 0.4em;
}

/* Paragraphes */
.post-wysiwyg p {
    margin: 0 0 1.1em;
    font-size: 15px;
    line-height: 1.85;
    color: var(--text);
}
.post-wysiwyg p:last-child {
    margin-bottom: 0;
}

/* Premier paragraphe — lead */
.post-wysiwyg > p:first-of-type {
    font-family: var(--ff-serif);
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.65;
    color: var(--text);
    font-weight: 300;
}

/* Liens */
.post-wysiwyg a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: opacity 0.2s;
}
.post-wysiwyg a:hover {
    opacity: 0.75;
}

/* Gras / italique */
.post-wysiwyg strong {
    font-weight: 600;
    color: var(--text);
}
.post-wysiwyg em {
    font-style: italic;
}

/* Listes */
.post-wysiwyg ul,
.post-wysiwyg ol {
    padding-left: 0;
    margin: 1.2em 0;
    list-style: none;
}
.post-wysiwyg ul li,
.post-wysiwyg ol li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 0.5em;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text);
}
.post-wysiwyg ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}
.post-wysiwyg ol {
    counter-reset: post-ol;
}
.post-wysiwyg ol li {
    counter-increment: post-ol;
}
.post-wysiwyg ol li::before {
    content: counter(post-ol, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--ff-serif);
    font-size: 13px;
    font-weight: 400;
    color: var(--gold);
    line-height: 1.85;
}

/* Blockquote */
.post-wysiwyg blockquote {
    margin: 2em 0;
    padding: 28px 36px;
    background: var(--gold-pale);
    border-left: 3px solid var(--gold);
    border-radius: 0 2px 2px 0;
}
.post-wysiwyg blockquote p {
    font-family: var(--ff-serif);
    font-size: clamp(17px, 1.5vw, 22px);
    font-weight: 300;
    line-height: 1.55;
    color: var(--text);
    font-style: italic;
    margin: 0;
}
.post-wysiwyg blockquote cite {
    display: block;
    margin-top: 12px;
    font-family: var(--ff-sans);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    font-style: normal;
}

/* Images */
.post-wysiwyg img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}
.post-wysiwyg figure {
    margin: 2em 0;
}
.post-wysiwyg figcaption {
    margin-top: 10px;
    font-family: var(--ff-sans);
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
    letter-spacing: 0.03em;
}

/* Séparateur */
.post-wysiwyg hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(197, 150, 58, 0.4), transparent);
    margin: 2.5em 0;
}

/* Tableau */
.post-wysiwyg table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
    font-size: 13.5px;
}
.post-wysiwyg th {
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    padding: 12px 16px;
    background: var(--gold-pale);
    border-bottom: 2px solid rgba(197, 150, 58, 0.3);
    text-align: left;
}
.post-wysiwyg td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(197, 150, 58, 0.12);
    color: var(--text);
    vertical-align: top;
}
.post-wysiwyg tr:last-child td {
    border-bottom: none;
}
.post-wysiwyg tr:nth-child(even) td {
    background: var(--ivory-deep);
}

/* Code */
.post-wysiwyg code {
    font-family: "Courier New", monospace;
    font-size: 13px;
    background: var(--ivory-deep);
    color: var(--text);
    padding: 2px 6px;
    border-radius: 2px;
}
.post-wysiwyg pre {
    background: var(--ivory-deep);
    border: 1px solid rgba(197, 150, 58, 0.15);
    border-radius: 3px;
    padding: 24px;
    overflow-x: auto;
    margin: 1.5em 0;
}
.post-wysiwyg pre code {
    background: none;
    padding: 0;
    font-size: 13px;
    line-height: 1.7;
}

/* Gutenberg blocks */
.post-wysiwyg .wp-block-image {
    margin: 2em 0;
}
.post-wysiwyg .wp-block-quote {
    /* same as blockquote */
}
.post-wysiwyg .wp-block-separator {
    /* same as hr */
}
.post-wysiwyg .wp-block-cover {
    border-radius: 3px;
    overflow: hidden;
}

/* 2 images côte à côte — forcer 50 % / 50 % */
.post-wysiwyg .wp-block-columns {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.post-wysiwyg .wp-block-columns .wp-block-column {
    flex: 1 1 0;
    min-width: 0;
}
.post-wysiwyg .wp-block-columns .wp-block-column img {
    width: 100%;
    height: auto;
    display: block;
}
.post-wysiwyg .wp-block-gallery {
    display: grid;
    gap: 2px;
}
.post-wysiwyg .wp-block-gallery:has(> figure:nth-child(2):last-child),
.post-wysiwyg .wp-block-gallery.columns-2 {
    grid-template-columns: 1fr 1fr;
}
.post-wysiwyg .wp-block-gallery figure,
.post-wysiwyg .wp-block-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
}

/* ── Tags ── */
.post-tags-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(197, 150, 58, 0.15);
}
.post-tags-label {
    font-family: var(--ff-sans);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-right: 4px;
}
.post-tag {
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-light);
    padding: 4px 12px;
    border: 1px solid rgba(197, 150, 58, 0.28);
    border-radius: 1px;
    transition:
        color 0.2s,
        border-color 0.2s;
}
.post-tag:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* ── Auteur ── */
.post-author-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 48px;
    padding: 28px 32px;
    background: var(--gold-pale);
    border: 1px solid rgba(197, 150, 58, 0.2);
    border-radius: 2px;
}
.post-author-avatar {
    flex-shrink: 0;
}
.post-author-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(197, 150, 58, 0.3);
}
.post-author-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.post-author-name {
    font-family: var(--ff-serif);
    font-size: 17px;
    font-weight: 400;
    color: var(--text);
}
.post-author-bio {
    font-family: var(--ff-sans);
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-light);
    margin: 0;
}

/* ── Navigation prev/next ── */
.post-nav-section {
    background: var(--ivory-deep);
    padding: 48px 0;
    border-top: 1px solid rgba(197, 150, 58, 0.12);
}
.post-nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}
.post-nav-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 28px 32px;
    background: var(--ivory);
    border: 1px solid rgba(197, 150, 58, 0.12);
    text-decoration: none;
    transition:
        border-color 0.25s,
        background 0.25s;
}
.post-nav-card:hover {
    border-color: rgba(197, 150, 58, 0.4);
    background: var(--gold-pale);
}
.post-nav-card--next {
    text-align: right;
    align-items: flex-end;
}
.post-nav-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}
.post-nav-card--next .post-nav-label {
    justify-content: flex-end;
}
.post-nav-title {
    font-family: var(--ff-serif);
    font-size: 17px;
    font-weight: 300;
    color: var(--text);
    line-height: 1.3;
}

/* ── Articles similaires ── */
.post-related-section {
    background: var(--ivory-deep);
    padding: 88px 0;
    border-top: 1px solid rgba(197, 150, 58, 0.12);
}
.post-related-header {
    text-align: center;
    margin-bottom: 56px;
}
.post-related-title {
    font-family: var(--ff-serif);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 300;
    color: var(--text);
    line-height: 1.15;
    margin: 12px 0 0;
}
.post-related-title em {
    color: var(--gold);
    font-style: italic;
}
.post-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.post-related-card {
    background: var(--ivory);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(197, 150, 58, 0.1);
    transition:
        box-shadow 0.3s,
        border-color 0.3s;
}
.post-related-card:hover {
    box-shadow: 0 8px 32px rgba(197, 150, 58, 0.1);
    border-color: rgba(197, 150, 58, 0.3);
}
.post-related-img-wrap {
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: var(--gold-pale);
}
.post-related-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}
.post-related-card:hover .post-related-img-wrap img {
    transform: scale(1.05);
}
.post-related-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-pale), var(--ivory-deep));
}
.post-related-body {
    padding: 28px 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.post-related-cat {
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}
.post-related-h3 {
    font-family: var(--ff-serif);
    font-size: 20px;
    font-weight: 300;
    color: var(--text);
    line-height: 1.25;
    margin: 0;
}
.post-related-h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.post-related-h3 a:hover {
    color: var(--gold);
}
.post-related-meta {
    font-family: var(--ff-sans);
    font-size: 11px;
    color: var(--text-light);
    display: flex;
    gap: 8px;
    align-items: center;
}
.post-related-link {
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(197, 150, 58, 0.2);
    transition: opacity 0.2s;
}
.post-related-link:hover {
    opacity: 0.7;
}

/* ── CTA section ── */
.post-cta-section {
    background: var(--ivory-warm);
    padding: 88px 0;
    border-top: 1px solid rgba(197, 150, 58, 0.12);
}
.post-cta-inner {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}
.post-cta-title {
    font-family: var(--ff-serif);
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 300;
    color: var(--text);
    line-height: 1.15;
    margin: 12px 0 16px;
}
.post-cta-title em {
    color: var(--gold);
    font-style: italic;
}
.post-cta-sub {
    font-family: var(--ff-sans);
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .post-hero--img {
        min-height: 48vh;
    }
    .post-body {
        padding: 0 24px;
    }
    .post-layout {
        padding: 48px 0 56px;
    }
    .post-nav-grid {
        grid-template-columns: 1fr;
    }
    .post-nav-card--next {
        text-align: left;
        align-items: flex-start;
    }
    .post-nav-card--next .post-nav-label {
        justify-content: flex-start;
    }
    .post-author-card {
        flex-direction: column;
    }
    .post-wysiwyg blockquote {
        padding: 20px 24px;
    }
    .post-related-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }
    .post-related-section {
        padding: 64px 0;
    }
    .post-wysiwyg .wp-block-columns {
        flex-direction: column;
        gap: 12px;
    }
}
@media (max-width: 480px) {
    .post-hero-inner {
        padding-bottom: 36px;
    }
    .post-meta-row {
        gap: 6px;
        font-size: 11px;
    }
    .post-body {
        padding: 0 20px;
    }
}

/* ════════════════════════════════════════════
   ARCHIVE BLOG — page-blog.php
════════════════════════════════════════════ */

/* ── En-tête ── */
.archive-blog-header {
    background: var(--ivory-warm);
    padding-top: calc(80px + 64px);
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(197, 150, 58, 0.15);
}
.archive-blog-header .post-breadcrumb {
    color: var(--text-light);
}
.archive-blog-header .post-breadcrumb a {
    color: var(--text-light);
}
.archive-blog-header .post-breadcrumb a:hover {
    color: var(--gold);
}
.abh-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}
.abh-title {
    font-family: var(--ff-serif);
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text);
    margin: 16px 0 20px;
}
.abh-title em {
    color: var(--gold);
    font-style: italic;
}
.abh-count {
    font-family: var(--ff-sans);
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 0.06em;
    margin-top: 16px;
}

/* ── Article mis en avant ── */
.archive-blog-featured {
    background: var(--ivory);
    padding: 64px 48px;
    border-bottom: 1px solid rgba(197, 150, 58, 0.1);
}
.abf-card {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 58fr 42fr;
    min-height: 480px;
    border: 1px solid rgba(197, 150, 58, 0.15);
    box-shadow: 0 8px 40px rgba(197, 150, 58, 0.08);
    overflow: hidden;
}
.abf-img-wrap {
    overflow: hidden;
    height: 480px;
}
.abf-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}
.abf-card:hover .abf-img-wrap img {
    transform: scale(1.05);
    filter: brightness(0.88);
}
.abf-img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--ivory-deep);
    display: flex;
    align-items: center;
    justify-content: center;
}
.abf-content {
    padding: 48px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    background: var(--ivory);
}
.abf-label {
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}
.abf-title {
    font-family: var(--ff-serif);
    font-size: clamp(26px, 3.2vw, 44px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text);
    text-decoration: none;
    display: block;
    transition: color 0.2s;
}
.abf-title:hover {
    color: var(--gold);
}
.abf-excerpt {
    font-family: var(--ff-sans);
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}
.abf-meta {
    font-family: var(--ff-sans);
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.04em;
}

/* ── Grille articles ── */
.archive-blog-grid-section {
    background: var(--ivory-deep);
    padding: 80px 0;
}
.archive-blog-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.archive-card {
    background: var(--ivory);
    overflow: hidden;
    border: 1px solid rgba(197, 150, 58, 0.1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: border-color 0.25s;
}
.archive-card:hover {
    border-color: rgba(197, 150, 58, 0.35);
}
.archive-card-img-wrap {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    display: block;
}
.archive-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}
.archive-card:hover .archive-card-img-wrap img {
    transform: scale(1.05);
    filter: brightness(0.88);
}
.archive-card-img-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--ivory-deep);
    display: flex;
    align-items: center;
    justify-content: center;
}
.archive-card-body {
    padding: 24px 28px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.archive-card-title {
    font-family: var(--ff-serif);
    font-size: clamp(17px, 1.6vw, 22px);
    font-weight: 300;
    line-height: 1.25;
    color: var(--text);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}
.archive-card-title:hover {
    color: var(--gold);
}
.archive-card-excerpt {
    font-family: var(--ff-sans);
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.archive-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(197, 150, 58, 0.1);
    margin-top: auto;
}
.archive-card-date {
    font-family: var(--ff-sans);
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.04em;
}
.archive-card-read {
    font-family: var(--ff-sans);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
}
.archive-card-read:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ── Pagination ── */
.archive-blog-pagination {
    background: var(--ivory);
    padding: 48px 0 64px;
    border-top: 1px solid rgba(197, 150, 58, 0.1);
}
.abp-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.abp-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-family: var(--ff-sans);
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--text-light);
    background: var(--ivory-deep);
    border: 1px solid rgba(197, 150, 58, 0.18);
    text-decoration: none;
    transition:
        background 0.2s,
        border-color 0.2s,
        color 0.2s;
}
.abp-item:hover {
    background: var(--gold-pale);
    border-color: var(--gold);
    color: var(--text);
}
.abp-item.abp-current {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ivory);
    font-weight: 500;
    pointer-events: none;
}
.abp-item.abp-dots {
    border: none;
    background: transparent;
    pointer-events: none;
    color: var(--text-light);
}

/* ── État vide ── */
.archive-blog-empty {
    background: var(--ivory-warm);
    padding: 120px 0;
    text-align: center;
}
.archive-blog-empty .abh-title {
    margin: 12px 0 16px;
}
.archive-blog-empty p {
    font-family: var(--ff-sans);
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .archive-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .abf-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .abf-img-wrap {
        height: 260px;
    }
    .abf-content {
        padding: 32px 28px;
    }
    .archive-blog-featured {
        padding: 48px 24px;
    }
    .archive-blog-grid {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }
    .archive-blog-header {
        padding-top: calc(80px + 40px);
        padding-bottom: 40px;
    }
    .abh-inner {
        padding: 0 24px;
    }
}
@media (max-width: 480px) {
    .abh-inner {
        padding: 0 20px;
    }
    .archive-blog-featured {
        padding: 40px 20px;
    }
    .archive-blog-grid {
        padding: 0 20px;
    }
    .abf-content {
        padding: 24px 20px;
    }
    .abf-img-wrap {
        height: 200px;
    }
}

/* ═══════════════════════════════════════════════════════════
   CARTE CADEAU — page-carte-cadeau.php
   ═══════════════════════════════════════════════════════════ */

/* ── Hero ──────────────────────────────────────────────────── */
.cc-hero {
    background: var(--ivory-warm);
    padding: calc(80px + 64px) 0 64px;
    border-bottom: 1px solid rgba(197, 150, 58, 0.15);
    text-align: center;
}

.cc-hero-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 48px;
}

.cc-hero .post-breadcrumb {
    justify-content: center;
    margin-bottom: 24px;
}

.cc-hero-title {
    font-family: var(--ff-serif);
    font-size: clamp(38px, 4.5vw, 64px);
    font-weight: 300;
    line-height: 1.08;
    color: var(--text);
    margin: 12px 0 0;
}

.cc-hero-title em {
    color: var(--gold);
    font-style: italic;
}

.cc-hero-sub {
    font-family: var(--ff-sans);
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 16px 0 0;
}

/* ── Sections prestations ───────────────────────────────────── */
.cc-presta-section {
    padding: 80px 0;
}

.cc-presta-section--even {
    background: var(--ivory);
}

.cc-presta-section--odd {
    background: var(--ivory-deep);
}

.cc-presta-section > .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.cc-presta-header {
    text-align: center;
    margin-bottom: 48px;
}

.cc-presta-header .tag {
    font-family: var(--ff-sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

.cc-presta-title {
    font-family: var(--ff-serif);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text);
    margin: 0 0 16px;
}

.cc-presta-title em {
    color: var(--gold);
    font-style: italic;
}

/* ── Grille formules ────────────────────────────────────────── */
.cc-formules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

/* ── Carte formule ──────────────────────────────────────────── */
.cc-formule-card {
    background: var(--ivory);
    border: 1px solid rgba(197, 150, 58, 0.15);
    box-shadow: 0 4px 24px rgba(197, 150, 58, 0.08);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition:
        box-shadow 0.25s,
        border-color 0.25s;
}

.cc-formule-card:hover {
    border-color: rgba(197, 150, 58, 0.4);
    box-shadow: 0 8px 40px rgba(197, 150, 58, 0.14);
}

.cc-formule-card--populaire {
    background: var(--gold-pale);
    border-color: rgba(197, 150, 58, 0.3);
}

/* ── Badges ─────────────────────────────────────────────────── */
.cc-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.cc-badge-gift {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--ff-sans);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-pale);
    border: 1px solid rgba(197, 150, 58, 0.3);
    padding: 4px 10px;
    border-radius: 2px;
}

.cc-badge-populaire {
    display: inline-flex;
    align-items: center;
    font-family: var(--ff-sans);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ivory);
    background: var(--gold);
    padding: 4px 10px;
    border-radius: 2px;
}

/* ── En-tête carte ──────────────────────────────────────────── */
.cc-card-nom {
    font-family: var(--ff-serif);
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 300;
    color: var(--text);
    line-height: 1.1;
    margin: 0 0 6px;
}

.cc-card-meta {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.cc-card-line {
    width: 32px;
    height: 2px;
    background: var(--gold);
    margin: 16px 0;
}

/* ── Items inclus ───────────────────────────────────────────── */
.cc-card-items {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.cc-card-items li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: var(--ff-sans);
    font-size: 13px;
    color: var(--text);
    line-height: 1.7;
    padding: 5px 0;
}

.cc-card-items li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

/* ── Bouton plein largeur dans la carte ─────────────────────── */
.cc-formule-card .btn {
    width: 100%;
    text-align: center;
    margin-top: 24px;
}

/* ── Image illustration prestation ─────────────────────────── */
.cc-presta-image {
    overflow: hidden;
    min-height: 320px;
}

.cc-presta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.cc-presta-image:hover img {
    transform: scale(1.03);
}

/* ── État vide ──────────────────────────────────────────────── */
.cc-empty {
    background: var(--ivory-warm);
    padding: 96px 0;
    text-align: center;
}

.cc-empty-inner {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .cc-formules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cc-presta-section {
        padding: 48px 0;
    }

    .cc-formules-grid {
        grid-template-columns: 1fr;
    }

    .cc-hero {
        padding: calc(80px + 40px) 0 48px;
    }
}

@media (max-width: 480px) {
    .cc-hero-inner,
    .cc-presta-section > .container,
    .cc-empty-inner {
        padding: 0 24px;
    }
}
