/* =========================================================
   Académie Florale — mirror of academie-florale.fr
   Palette exacte: cream + brown + orange #FC4A00
   ========================================================= */

:root {
    --cream: #FCFAF7;
    --cream-warm: #F7F2ED;
    --cream-deep: #EDE8E4;
    --brown-deep: #1E0D01;
    --brown-warm: #9C6349;
    --text: #272727;
    --text-muted: #666666;
    --text-soft: #4A4A4C;

    /* THE orange — measured from the live site */
    --orange: #FC4A00;
    --orange-2: #E85B2C;
    --orange-glow: rgba(252, 74, 0, 0.35);

    --line: rgba(30, 13, 1, 0.12);
    --white: #ffffff;

    --font-serif: 'Playfair Display', 'Times New Roman', serif;
    --font-caslon: 'Libre Caslon Condensed', 'Playfair Display', serif;
    --font-sans: 'Onest', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Roboto Mono', ui-monospace, monospace;

    --radius-pill: 100px;
    --radius-lg: 24px;
    --radius-md: 14px;
    --radius-sm: 12px;

    --gutter: clamp(20px, 4vw, 80px);
    --section: clamp(72px, 10vw, 140px);
    --max-w: 1240px;

    --shadow-soft: 0 20px 60px rgba(30, 13, 1, 0.10);
    --shadow-card: 0 8px 32px rgba(30, 13, 1, 0.06);
    --shadow-orange: 0 12px 32px var(--orange-glow);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--text);
    line-height: 1.5;
    font-size: 16px;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* -------------------------------------------------
   TYPOGRAPHY — Playfair everywhere, orange italic for accents
   ------------------------------------------------- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    color: var(--text);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

h1 {
    font-family: var(--font-serif);
    font-size: clamp(52px, 8vw, 128px);
    letter-spacing: -0.04em;
    line-height: 0.95;
}

h2 {
    font-size: clamp(34px, 4.5vw, 48px);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

h3 {
    font-size: clamp(20px, 2vw, 22px);
    line-height: 1.35;
    font-weight: 500;
}

.orange { color: var(--orange); font-style: italic; }
.orange-plain { color: var(--orange); }

.eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--brown-warm);
    font-weight: 500;
}

/* -------------------------------------------------
   LAYOUT
   ------------------------------------------------- */
.wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}
section { padding-top: var(--section); padding-bottom: var(--section); }
.section-lead { max-width: 780px; margin: 0 auto clamp(48px, 6vw, 80px); text-align: center; }
.section-lead h2 { margin-bottom: 16px; }
.section-lead p { color: var(--text-soft); font-size: 17px; line-height: 1.65; }

/* -------------------------------------------------
   BUTTONS — orange gradient pill = the site's signature
   ------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.005em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(180deg, #FF7A2E 0%, var(--orange) 100%);
    color: var(--white);
    box-shadow: 0 8px 20px var(--orange-glow), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px var(--orange-glow); filter: brightness(1.05); }

.btn-ghost {
    background: transparent;
    color: var(--brown-deep);
    border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--cream-deep); }

.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* -------------------------------------------------
   NAV — glass pill, top of page
   ------------------------------------------------- */
.nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    background: rgba(252, 250, 247, 0.78);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: var(--radius-pill);
    padding: 10px 10px 10px 32px;
    display: flex;
    align-items: center;
    gap: 44px;
    box-shadow: 0 6px 24px rgba(30, 13, 1, 0.08);
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--brown-deep);
    letter-spacing: -0.02em;
}
.nav-logo em { font-style: italic; color: var(--brown-warm); font-weight: 400; }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 14px; color: var(--text-soft); transition: color 0.2s; }
.nav-links a:hover { color: var(--brown-deep); }

.nav-cta { padding: 11px 22px; font-size: 14px; }

@media (max-width: 900px) { .nav-links { display: none; } .nav { padding-left: 20px; } }

/* -------------------------------------------------
   HERO — full-viewport background image + overlay text
   ------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 0;
    background: #000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.28) 28%, rgba(0,0,0,0.05) 52%, rgba(0,0,0,0.6) 100%);
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--gutter);
    padding-top: clamp(120px, 15vh, 180px);
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    flex: 1;
    min-height: 0;
}
.hero-copy h2 {
    color: var(--white);
    font-size: clamp(32px, 3.4vw, 50px);
    max-width: 820px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 auto 26px;
    font-weight: 400;
    text-wrap: balance;
    text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}
.hero-copy h2 .orange { color: var(--orange); font-style: italic; }

.hero-copy .lede {
    color: rgba(255, 255, 255, 0.96);
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 15px;
    line-height: 1.6;
    text-wrap: pretty;
    text-shadow: 0 1px 14px rgba(0,0,0,0.7);
}

.hero-display {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
    margin-top: auto;
    pointer-events: none;
}
.hero-display span {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(64px, 13vw, 200px);
    color: var(--white);
    letter-spacing: -0.04em;
    line-height: 0.9;
    text-shadow: 0 6px 40px rgba(0,0,0,0.35);
    padding-bottom: 10px;
}

@media (max-width: 700px) {
    .hero-copy h2 .orange { white-space: normal; }
}

/* -------------------------------------------------
   PROGRAMME AUDIENCE (A qui s'addresse) — 3 blocks
   ------------------------------------------------- */
.audience { background: var(--cream); }
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.audience-card {
    padding: 40px 32px;
    background: var(--cream-warm);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: transform 0.25s;
}
.audience-card:hover { transform: translateY(-3px); }

.audience-card .num {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--orange);
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
    line-height: 1;
}

.audience-card h3 {
    color: var(--brown-deep);
    margin-bottom: 12px;
    line-height: 1.3;
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
}
.audience-card p { color: var(--text-soft); font-size: 14.5px; line-height: 1.65; }

@media (max-width: 900px) { .audience-grid { grid-template-columns: 1fr; } }

/* -------------------------------------------------
   PILIERS — 3 tall photo cards with title overlay
   ------------------------------------------------- */
.piliers { background: var(--cream); }
.piliers .section-title {
    text-align: center;
    font-family: var(--font-serif);
    font-size: clamp(34px, 4vw, 48px);
    color: var(--orange);
    letter-spacing: -0.02em;
    margin-bottom: 60px;
    line-height: 1.05;
    font-weight: 400;
}
.piliers .section-title span { color: var(--orange); display: block; font-style: italic; }

.piliers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.pilier {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 384/522;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s;
}
.pilier:hover { transform: translateY(-4px); }

.pilier img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pilier::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.75) 100%);
}
.pilier-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px;
    z-index: 2;
    color: var(--white);
}
.pilier-body h3 {
    font-family: var(--font-serif);
    color: var(--white);
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 500;
}
.pilier-body p { font-size: 13.5px; line-height: 1.5; opacity: 0.92; }

@media (max-width: 900px) { .piliers-grid { grid-template-columns: 1fr; } }

/* -------------------------------------------------
   PROGRAMME VIRALE — video/VSL section
   ------------------------------------------------- */
.programme-viral { background: var(--cream-warm); padding-bottom: 40px; }
.programme-viral h2 {
    text-align: center;
    margin-bottom: 48px;
    color: var(--brown-deep);
}
.video-wrap {
    max-width: 920px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: #000;
    position: relative;
}
.video-wrap iframe,
.video-wrap wistia-player { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.video-wrap wistia-player:not(:defined) {
    background: center / contain no-repeat url('https://fast.wistia.com/embed/medias/obb1ev2cwc/swatch');
    filter: blur(5px);
}
.programme-viral .cta-row { text-align: center; margin-top: 48px; }

/* -------------------------------------------------
   MODULES — video-list style, 6 modules stacked
   ------------------------------------------------- */
.modules-section { background: var(--cream-warm); }
.modules-section .subtitle {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    margin-bottom: 40px;
    font-family: var(--font-serif);
    font-size: clamp(20px, 2.2vw, 26px);
    color: var(--brown-deep);
    font-weight: 400;
    letter-spacing: -0.01em;
}
.modules-section .subtitle .monogram {
    width: 44px; height: 44px;
    background: var(--white);
    border-radius: 8px;
    display: inline-flex; align-items: baseline; justify-content: center;
    font-family: var(--font-serif);
    color: var(--brown-deep);
    box-shadow: 0 3px 10px rgba(30,13,1,0.08);
    font-size: 22px;
    line-height: 1;
    padding-top: 4px;
    gap: 1px;
    letter-spacing: -0.03em;
}
.modules-section .subtitle .monogram span {
    font-style: italic;
    font-size: 14px;
    color: var(--brown-warm);
    position: relative;
    top: -3px;
    margin-left: -2px;
}
.modules-section .subtitle .accent { color: var(--orange); font-style: italic; }

.modules-list {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.module-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    align-items: start;
    transition: transform 0.2s;
}
.module-row:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }

.module-thumb {
    position: relative;
    aspect-ratio: 16/10;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--cream-deep);
}
.module-thumb img { width: 100%; height: 100%; object-fit: cover; }
.module-thumb .play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 44px; height: 44px;
    background: linear-gradient(180deg, #FF7A2E, var(--orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(252,74,0,0.45);
    z-index: 2;
}
.module-thumb .play svg { width: 14px; height: 14px; fill: var(--white); margin-left: 2px; }
.module-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.08);
    z-index: 1;
}

.module-body h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 18px;
    color: var(--brown-deep);
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.module-body p, .module-body ul { color: var(--text-soft); font-size: 14.5px; line-height: 1.6; }
.module-body p { margin-bottom: 6px; }
.module-body ul { list-style: none; padding: 0; }
.module-body ul li { padding-left: 16px; position: relative; margin: 4px 0; }
.module-body ul li::before { content: '•'; position: absolute; left: 0; color: var(--orange); }
.module-body .closing { margin-top: 10px; color: var(--text); font-style: italic; }

@media (max-width: 720px) {
    .module-row { grid-template-columns: 1fr; }
    .module-thumb { aspect-ratio: 16/9; max-width: 220px; }
}

/* -------------------------------------------------
   CREER UNE ACTIVITE — full-width image + text
   ------------------------------------------------- */
.creer { background: var(--cream); padding-top: 60px; padding-bottom: 60px; }
.creer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.creer h2 { color: var(--brown-deep); margin-bottom: 24px; }
.creer p { color: var(--text-soft); font-size: 16px; line-height: 1.7; margin-bottom: 14px; }
.creer blockquote {
    margin: 24px 0 12px;
    padding: 18px 22px;
    border-left: 3px solid var(--orange);
    background: rgba(252, 74, 0, 0.04);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 18px;
    line-height: 1.5;
    color: var(--brown-deep);
}
.creer .sig { color: var(--brown-warm); font-style: italic; font-size: 14px; margin-top: 4px; }
.creer-visual {
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.creer-visual img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .creer-inner { grid-template-columns: 1fr; } }

/* -------------------------------------------------
   ACCOMPAGNEMENT — big title, gallery-like
   ------------------------------------------------- */
.accompagnement { background: var(--cream-warm); text-align: center; }
.accompagnement h2 { color: var(--brown-deep); margin-bottom: 60px; }
.accompagnement h2 em { color: var(--orange); font-style: italic; }

.accomp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}
.accomp-item {
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    text-align: left;
    transition: transform 0.2s;
}
.accomp-item:hover { transform: translateY(-3px); }

.accomp-item .k {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--orange);
    font-size: 40px;
    line-height: 1;
    display: block;
    margin-bottom: 20px;
}
.accomp-item h3 { color: var(--brown-deep); margin-bottom: 10px; font-family: var(--font-serif); font-weight: 500; }
.accomp-item p { color: var(--text-soft); font-size: 14.5px; line-height: 1.6; }

.accompagnement .cta-row { margin-top: 48px; }

@media (max-width: 900px) { .accomp-grid { grid-template-columns: 1fr; } }

/* -------------------------------------------------
   ILS ONT OSÉ — testimonials grid
   ------------------------------------------------- */
.testimonials { background: var(--cream); }
.testimonials h2 { text-align: center; margin-bottom: 14px; color: var(--brown-deep); }
.testimonials h2 em { color: var(--orange); font-style: italic; }
.testimonials-sub {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 48px;
    color: var(--brown-warm, #6b5544);
    font-size: 16px;
    line-height: 1.55;
}

/* Carousel — quote cards, one at a time */
.carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}
.carousel-viewport {
    display: flex;
    align-items: stretch;
    overflow: hidden;
}
.carousel-track {
    display: flex;
    align-items: stretch;
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 12px 0;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }

.testi-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    box-sizing: border-box;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: clamp(32px, 5vw, 56px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 320px;
    position: relative;
}
.testi-mark {
    font-family: var(--font-serif);
    font-size: 96px;
    line-height: 0.6;
    color: var(--orange);
    opacity: 0.28;
    display: block;
    margin-bottom: 8px;
    height: 44px;
}
.testi-text {
    font-family: var(--font-serif);
    font-size: clamp(19px, 2.1vw, 25px);
    line-height: 1.5;
    color: var(--brown-deep);
    letter-spacing: -0.01em;
    margin: 0 0 32px;
    text-wrap: pretty;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--line);
    padding-top: 24px;
}
.testi-avatar {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), #ff7a3d);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 22px;
    line-height: 1;
    box-shadow: 0 4px 14px rgba(252, 74, 0, 0.25);
}
.testi-meta { display: flex; flex-direction: column; gap: 3px; }
.testi-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--brown-deep);
}
.testi-role {
    font-size: 13px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--orange);
}

@media (max-width: 700px) {
    .carousel { padding: 0 8px; }
    .testi-card { padding: 28px 24px; min-height: 300px; }
    .testi-mark { font-size: 72px; height: 34px; }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 4px 16px rgba(30,13,1,0.10);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown-deep);
    font-size: 20px;
    z-index: 5;
    transition: background 0.2s, transform 0.2s;
}
.carousel-btn:hover { background: var(--orange); color: var(--white); transform: translateY(-50%) scale(1.06); }
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

.carousel-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
}
.carousel-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cream-deep);
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
}
.carousel-dots span.active { background: var(--orange); transform: scale(1.3); }

@media (max-width: 700px) {
    .carousel-btn { display: none; }
}


/* -------------------------------------------------
   LA FORMATRICE (Sybile) — arch photo right + bio left
   ------------------------------------------------- */
.formatrice { background: var(--cream); padding-top: clamp(60px, 8vw, 100px); padding-bottom: clamp(48px, 5vw, 72px); }
.formatrice .cta-row { text-align: center; margin-bottom: 36px; }
.formatrice-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.formatrice-copy h2 {
    color: var(--brown-deep);
    margin-bottom: 28px;
    font-family: var(--font-serif);
    font-size: clamp(38px, 4.5vw, 56px);
    line-height: 1.02;
    letter-spacing: -0.02em;
}
.formatrice-copy h2 em { color: var(--orange); font-style: italic; font-weight: 400; margin-top: 6px; display: inline-block; }
.formatrice-copy p { color: var(--text-soft); font-size: 15px; line-height: 1.7; margin-bottom: 14px; }

.formatrice-photo {
    aspect-ratio: 4/5;
    border-radius: 260px 260px var(--radius-lg) var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.formatrice-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }

@media (max-width: 900px) { .formatrice-inner { grid-template-columns: 1fr; } }

/* -------------------------------------------------
   DEVENEZ PATRONNE — 4 cards white grid
   ------------------------------------------------- */
.patronne { background: var(--cream); padding-top: clamp(48px, 5vw, 72px); }
.patronne h2 { text-align: center; margin-bottom: 60px; color: var(--brown-deep); max-width: 640px; margin-left: auto; margin-right: auto; }

.patronne-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.patron-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    border: 1px solid var(--line);
    text-align: left;
    transition: transform 0.2s;
    aspect-ratio: 1/1.05;
    display: flex;
    flex-direction: column;
}
.patron-card:hover { transform: translateY(-3px); }
.patron-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #FF7A2E, var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    margin-bottom: 20px;
    box-shadow: 0 6px 14px var(--orange-glow);
}
.patron-card h3 { font-family: var(--font-serif); color: var(--brown-deep); font-size: 22px; font-weight: 500; margin-bottom: 12px; }
.patron-card p { color: var(--text-soft); font-size: 14px; line-height: 1.55; }

.patronne .cta-row { text-align: center; margin-top: 48px; }

@media (max-width: 1000px) { .patronne-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .patronne-grid { grid-template-columns: 1fr; } .patron-card { aspect-ratio: auto; } }

/* -------------------------------------------------
   FAQ — accordion with orange plus
   ------------------------------------------------- */
.faq { background: var(--cream); }
.faq h2 { text-align: center; margin-bottom: 60px; color: var(--brown-deep); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
    background: var(--white);
    border-radius: 22px;
    box-shadow: 0 2px 8px rgba(30,13,1,0.04);
    overflow: hidden;
}
.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 24px 28px;
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--brown-deep);
    letter-spacing: -0.01em;
    list-style: none;
    line-height: 1.3;
    cursor: pointer;
    font-weight: 500;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .plus {
    flex-shrink: 0;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: linear-gradient(180deg, #FF7A2E, var(--orange));
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 10px var(--orange-glow);
    transition: transform 0.25s;
}
.faq-item[open] .plus { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 28px 24px; color: var(--text-soft); font-size: 15px; line-height: 1.7; }

.faq .cta-row { text-align: center; margin-top: 48px; }

/* -------------------------------------------------
   FOOTER — warm brown, Libre Caslon big titles
   ------------------------------------------------- */
.footer {
    background: var(--brown-deep);
    color: var(--cream-warm);
    padding: 80px 0 32px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col h3 {
    font-family: var(--font-caslon);
    font-size: clamp(24px, 2.4vw, 30px);
    color: var(--cream-warm);
    margin-bottom: 12px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
}
.footer-col.footer-brand h3 { font-size: clamp(28px, 3vw, 36px); }
.footer-col p, .footer-col a { color: rgba(247, 242, 237, 0.7); font-size: 14.5px; line-height: 1.6; }
.footer-col ul { list-style: none; margin-top: 6px; }
.footer-col li { margin-bottom: 8px; }
.footer-col a:hover { color: var(--orange); }
.footer-brand-title { color: var(--orange) !important; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 12px;
    color: rgba(247, 242, 237, 0.5);
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }

/* -------------------------------------------------
   REVEAL
   ------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* -------------------------------------------------
   LEGAL PAGES — mentions légales & CGV
   ------------------------------------------------- */
.legal-hero {
    background: var(--cream-warm);
    text-align: center;
    padding-top: clamp(130px, 16vh, 180px);
    padding-bottom: clamp(48px, 6vw, 72px);
    border-bottom: 1px solid var(--line);
}
.legal-hero .eyebrow { display: block; margin-bottom: 18px; }
.legal-hero h1 {
    font-size: clamp(38px, 6vw, 66px);
    line-height: 1.02;
    color: var(--brown-deep);
}
.legal-hero h1 em { color: var(--orange); font-style: italic; }
.legal-hero .legal-meta {
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 14px;
    font-family: var(--font-mono);
    letter-spacing: 0.02em;
}

.legal-body {
    max-width: 820px;
    margin: 0 auto;
    padding: clamp(48px, 6vw, 80px) var(--gutter) clamp(72px, 9vw, 120px);
}
.legal-block { padding: 0; margin-bottom: clamp(32px, 4vw, 48px); }
.legal-block:last-of-type { margin-bottom: 0; }
.legal-block h2 {
    font-family: var(--font-serif);
    font-size: clamp(22px, 2.6vw, 28px);
    color: var(--brown-deep);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}
.legal-block h2 .n { color: var(--orange); font-family: var(--font-mono); font-size: 0.62em; font-weight: 500; margin-right: 12px; vertical-align: 2px; }
.legal-block h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--brown-deep);
    font-weight: 500;
    margin: 22px 0 8px;
}
.legal-block p { color: var(--text-soft); font-size: 15.5px; line-height: 1.75; margin-bottom: 14px; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block a { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }
.legal-block ul { list-style: none; margin: 6px 0 16px; padding: 0; }
.legal-block li {
    position: relative;
    color: var(--text-soft);
    font-size: 15.5px;
    line-height: 1.7;
    padding-left: 26px;
    margin-bottom: 8px;
}
.legal-block li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
}

/* Entity card (éditeur / hébergeur / prestataire) */
.legal-entity {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin: 8px 0 16px;
    box-shadow: var(--shadow-card);
}
.legal-entity strong { color: var(--brown-deep); font-weight: 600; }
.legal-entity p { margin-bottom: 4px; font-size: 15px; }

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 14px;
    color: var(--brown-warm);
    font-weight: 500;
}
.legal-back:hover { color: var(--orange); }
