/* ============================================================
   TIMUS — Champignons Français · Saint-Malo
   DA Armelle-inspired : Crossfit font, pill header, organic
   ============================================================ */

@font-face { font-family: 'Crossfit'; src: url('fonts/CrossfitDemo-Regular.otf') format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Crossfit'; src: url('fonts/CrossfitDemo-Demi.otf') format('opentype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Crossfit'; src: url('fonts/CrossfitDemo-Bold.otf') format('opentype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Crossfit'; src: url('fonts/CrossfitDemo-Heavy.otf') format('opentype'); font-weight: 900; font-style: normal; font-display: swap; }

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

:root {
    --vert: #1F3D34;
    --vert-doux: #2d5a4a;
    --sauge: #A2AE9A;
    --sauge-clair: #c5cfbe;
    --beige: #F2EDE4;
    --creme: #FAF6EF;
    --brun: #A67C52;
    --terracotta: #C84E3A;
    --blanc: #FFFDF9;
    --noir: #1a1a18;
    --cf: 'Crossfit', 'Impact', sans-serif;
    --display: 'DM Serif Display', Georgia, serif;
    --body: 'Inter', -apple-system, sans-serif;
    --r: 20px;
    --r-lg: 28px;
    --pill: 999px;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--body); color: var(--noir); background: var(--creme);
    line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.page-wrap { opacity: 0; animation: pageIn 0.5s var(--ease) 0.05s forwards; }
@keyframes pageIn { to { opacity: 1; } }

.scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; z-index: 300;
    background: var(--terracotta); width: 0%; pointer-events: none; border-radius: 0 2px 2px 0;
}

/* ===== HEADER — pill floating center ===== */
.header {
    position: fixed; top: 1rem; left: 50%; transform: translateX(-50%);
    z-index: 110; display: flex; align-items: center; gap: 2rem;
    padding: 0.55rem 1rem 0.55rem 1.4rem;
    background: var(--vert); border-radius: var(--pill);
    box-shadow: 0 4px 24px rgba(31,61,52,0.2);
    transition: all 0.4s var(--ease);
    max-width: 95vw;
}
.header.scrolled { box-shadow: 0 6px 30px rgba(31,61,52,0.25); top: 0.6rem; }

.logo { display: flex; align-items: center; gap: 0.4rem; flex-shrink: 0; }
.logo-img { height: 28px; width: auto; filter: brightness(0) invert(0.92); transition: opacity 0.3s; }
.logo-text {
    font-family: var(--cf); font-size: 1.15rem; font-weight: 700;
    color: var(--beige); letter-spacing: 0.15em; text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 1.2rem; }
.nav a {
    color: rgba(242,237,228,0.7); font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.03em; transition: color 0.2s; white-space: nowrap;
}
.nav a:hover, .nav a.active { color: var(--beige); }
.nav .btn-nav {
    background: var(--beige); color: var(--vert); padding: 0.4rem 1rem;
    border-radius: var(--pill); font-size: 0.72rem; font-weight: 700;
    font-family: var(--cf); letter-spacing: 0.08em; text-transform: uppercase;
    transition: background 0.2s, transform 0.2s;
    border: 2px solid var(--beige);
}
.nav .btn-nav:hover { background: var(--terracotta); color: #fff; border-color: var(--terracotta); transform: scale(1.03); }

.burger { display: none; flex-direction: column; gap: 4px; cursor: pointer; z-index: 120; position: relative; padding: 0.3rem; }
.burger span { width: 22px; height: 2px; background: var(--beige); border-radius: 1px; transition: all 0.3s var(--ease); display: block; }
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.mobile-nav {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--vert); z-index: 105;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.mobile-nav.active { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-nav a {
    font-family: var(--cf); font-weight: 700; font-size: 2rem;
    color: var(--beige); text-transform: uppercase; letter-spacing: 0.12em;
    opacity: 0; transform: translateY(15px);
    transition: color 0.2s, transform 0.4s var(--ease), opacity 0.4s;
}
.mobile-nav.active a { opacity: 1; transform: translateY(0); }
.mobile-nav.active a:nth-child(1) { transition-delay: .05s; }
.mobile-nav.active a:nth-child(2) { transition-delay: .1s; }
.mobile-nav.active a:nth-child(3) { transition-delay: .15s; }
.mobile-nav.active a:nth-child(4) { transition-delay: .2s; }
.mobile-nav.active a:nth-child(5) { transition-delay: .25s; }
.mobile-nav.active a:nth-child(6) { transition-delay: .3s; }
.mobile-nav a:hover { color: var(--sauge); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden; text-align: center;
    padding: 8rem 5% 5rem; background: var(--creme);
}
/* Motif champignons type Armelle / p tite crepe : silhouettes visibles sur creme */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.26;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cellipse cx='36' cy='24' rx='16' ry='12' fill='%23B86A52'/%3E%3Cpath d='M36 36v20' stroke='%23A35E45' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 72px 72px;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-logo { display: block; width: 160px; height: auto; margin: 0 auto 2.5rem; filter: brightness(0) saturate(100%) invert(20%) sepia(15%) saturate(800%) hue-rotate(110deg); }
.hero h1 {
    font-family: var(--cf); color: var(--vert);
    font-size: clamp(3.5rem, 10vw, 7rem); line-height: 0.95;
    font-weight: 900; text-transform: uppercase; letter-spacing: 0.03em;
    margin-bottom: 1.5rem;
}
.hero-tagline {
    color: rgba(26,26,24,0.55); font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.8; font-weight: 300;
}
.hero-tagline em { font-family: var(--display); font-style: italic; color: var(--vert); font-weight: 400; text-decoration: underline; text-decoration-color: var(--sauge); text-underline-offset: 3px; }
.hero-ctas { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

.hero-deco {
    position: absolute; pointer-events: none; opacity: 0.06;
}
.hero-deco svg { stroke: var(--vert); fill: none; stroke-width: 1; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 2rem; border-radius: var(--pill); font-size: 0.78rem;
    font-weight: 700; font-family: var(--cf); text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s var(--ease); cursor: pointer; border: 2.5px solid transparent;
}
.btn-primary { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }
.btn-primary:hover { background: #b5432f; border-color: #b5432f; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,78,58,0.25); }
.btn-outline { background: transparent; color: var(--vert); border-color: var(--vert); }
.btn-outline:hover { background: var(--vert); color: var(--beige); transform: translateY(-2px); }
.btn-green { background: var(--vert); color: var(--beige); border-color: var(--vert); }
.btn-green:hover { background: #163028; transform: translateY(-2px); }
.btn-beige { background: var(--beige); color: var(--vert); border-color: var(--beige); }
.btn-beige:hover { background: #e6ddd0; transform: translateY(-2px); }
.btn-arrow svg { width: 14px; height: 14px; transition: transform 0.3s; }
.btn-arrow:hover svg { transform: translateX(4px); }

/* ===== MARQUEE ===== */
.marquee { overflow: hidden; padding: 0.9rem 0; }
.marquee-vert { background: var(--vert); border-radius: var(--r-lg); margin: 0 2%; }
.marquee-beige { background: var(--beige); }
.marquee-track { display: flex; width: max-content; animation: marquee 20s linear infinite; }
.marquee-track span {
    font-family: var(--cf); font-size: 1.1rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    white-space: nowrap; padding: 0 0.6rem;
}
.marquee-vert .marquee-track span { color: var(--beige); }
.marquee-beige .marquee-track span { color: var(--vert); opacity: 0.5; }
.marquee-sep { display: inline-flex; align-items: center; padding: 0 0.4rem; opacity: 0.5; }
.marquee-sep svg { width: 14px; height: 14px; }
.marquee-vert .marquee-sep svg { stroke: var(--sauge); fill: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== SECTIONS ===== */
.section { padding: 6rem 5%; }
.section-creme { background: var(--creme); }
.section-beige { background: var(--beige); border-radius: var(--r-lg); margin: 0.8rem 2%; }
.section-vert { background: var(--vert); color: var(--beige); border-radius: var(--r-lg); margin: 0.8rem 2%; }
.section-blanc { background: var(--blanc); border-radius: var(--r-lg); margin: 0.8rem 2%; }

.container { max-width: 1140px; margin: 0 auto; }
.container-sm { max-width: 860px; margin: 0 auto; }
.container-xs { max-width: 680px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.eyebrow {
    display: inline-block; font-family: var(--cf); font-size: 0.68rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em;
    margin-bottom: 1rem; color: var(--brun);
}
.section-vert .eyebrow { color: var(--sauge); }
.section-title {
    font-family: var(--cf); font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em;
    line-height: 1; margin-bottom: 1.2rem;
}
.section-desc {
    font-size: 0.95rem; line-height: 1.8; max-width: 520px;
    margin: 0 auto; color: rgba(26,26,24,0.5); font-weight: 300;
}
.section-desc em { font-family: var(--display); font-style: italic; color: var(--vert); text-decoration: underline; text-decoration-color: var(--sauge); text-underline-offset: 3px; }
.section-vert .section-desc { color: rgba(242,237,228,0.6); }
.section-vert .section-desc em { color: var(--beige); text-decoration-color: rgba(162,174,154,0.4); }

/* ===== SPLIT ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; max-width: 1140px; margin: 0 auto; }
.split.reverse .split-visual { order: -1; }
.split-text h2 {
    font-family: var(--cf); font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 900; text-transform: uppercase; letter-spacing: 0.03em;
    line-height: 1.05; margin-bottom: 1.3rem;
}
/* Emphasis inside Crossfit headings: demo font lacks many glyphs — use serif */
.section-title em,
.split-text h2 em {
    font-family: var(--display);
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}
.split-text p { font-size: 0.92rem; line-height: 1.85; color: rgba(26,26,24,0.55); margin-bottom: 0.8rem; }
.split-text p em { font-family: var(--display); font-style: italic; color: var(--vert); text-decoration: underline; text-decoration-color: var(--sauge); text-underline-offset: 3px; }
.split-visual { border-radius: var(--r-lg); overflow: hidden; }
.split-visual-img { aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; }

.feature-list { list-style: none; margin: 1.2rem 0 1.8rem; }
.feature-list li { font-size: 0.86rem; padding: 0.4rem 0 0.4rem 1.6rem; position: relative; color: rgba(26,26,24,0.6); line-height: 1.6; }
.feature-list li::before { content: ''; position: absolute; left: 0; top: 0.7rem; width: 8px; height: 8px; border-radius: 50%; background: var(--sauge); }
.section-vert .feature-list li { color: rgba(242,237,228,0.65); }

/* ===== CARDS ===== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; max-width: 1140px; margin: 0 auto; }
.card {
    padding: 2.2rem 1.8rem; border-radius: var(--r); background: var(--blanc);
    border: 1.5px solid rgba(162,174,154,0.08);
    transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(31,61,52,0.07); }
.section-vert .card { background: rgba(242,237,228,0.04); border-color: rgba(242,237,228,0.06); }
.card-icon { width: 48px; height: 48px; margin-bottom: 1.1rem; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: var(--beige); }
.section-vert .card-icon { background: rgba(162,174,154,0.1); }
.card-icon svg { width: 22px; height: 22px; stroke: var(--vert); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.section-vert .card-icon svg { stroke: var(--sauge); }
.card h3 { font-family: var(--cf); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.card p { font-size: 0.84rem; line-height: 1.75; color: rgba(26,26,24,0.5); }
.section-vert .card p { color: rgba(242,237,228,0.5); }

/* ===== STATS ===== */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; text-align: center; max-width: 960px; margin: 0 auto; }
.stat-item { padding: 1.8rem 1rem; background: rgba(162,174,154,0.06); border-radius: var(--r); }
.section-vert .stat-item { background: rgba(242,237,228,0.04); }
/* Chiffres: Crossfit demo n'inclut pas le "4" — on affiche les compteurs en Inter */
.stat-number,
.stat-number [data-count] {
    font-family: var(--body);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: 0.04em;
    color: var(--vert);
    margin-bottom: 0.3rem;
    line-height: 1;
}
.section-vert .stat-number,
.section-vert .stat-number [data-count] { color: var(--sauge); }
.stat-label { font-size: 0.76rem; color: rgba(26,26,24,0.45); line-height: 1.45; }
.section-vert .stat-label { color: rgba(242,237,228,0.45); }

.stat-plain {
    font-family: var(--body);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: 0.04em;
    color: var(--vert);
    line-height: 1;
}
.section-vert .stat-plain { color: var(--sauge); }

/* ===== LABO (supervision connectee) ===== */
.labo-split {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 1.08fr);
    gap: 3rem;
    align-items: start;
    max-width: 1140px;
    margin: 0 auto 2.5rem;
}
.labo-copy .labo-lead {
    font-size: 0.95rem;
    line-height: 1.85;
    color: rgba(26,26,24,0.58);
    margin-bottom: 1rem;
}
.labo-fig {
    margin: 0;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--beige);
    box-shadow: 0 12px 40px rgba(31,61,52,0.08);
}
.labo-fig img { width: 100%; height: auto; display: block; }
.labo-caption {
    font-size: 0.72rem;
    line-height: 1.5;
    color: rgba(26,26,24,0.45);
    padding: 0.9rem 1.1rem;
    background: rgba(250,246,239,0.6);
}
.stats-row-labo {
    grid-template-columns: repeat(3, 1fr);
    max-width: 920px;
    margin-top: 0.5rem;
}

/* ===== PRODUCTS ===== */
.products-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; max-width: 1000px; margin: 0 auto; }
.product-card { border-radius: var(--r-lg); overflow: hidden; background: var(--blanc); box-shadow: 0 6px 30px rgba(31,61,52,0.05); transition: transform 0.45s var(--ease), box-shadow 0.45s; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 14px 45px rgba(31,61,52,0.1); }
.product-visual { aspect-ratio: 5/4; display: flex; align-items: center; justify-content: center; position: relative; }
.product-visual-pleurotes { background: var(--beige); }
.product-visual-shiitake { background: var(--vert); }
.product-visual svg { width: 100px; height: 100px; opacity: 0.7; }
.product-visual-shiitake svg { stroke: var(--beige); }
.product-tag { position: absolute; top: 1rem; right: 1rem; padding: 0.3rem 0.9rem; border-radius: var(--pill); font-family: var(--cf); font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.tag-dispo { background: var(--vert); color: var(--beige); }
.tag-saison { background: var(--brun); color: #fff; }
.product-body { padding: 1.8rem; }
.product-species { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--brun); margin-bottom: 0.3rem; font-weight: 600; }
.product-name { font-family: var(--cf); font-size: 1.6rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.2rem; }
.product-subtitle { font-family: var(--display); font-style: italic; color: var(--brun); margin-bottom: 0.9rem; font-size: 0.92rem; }
.product-desc { font-size: 0.84rem; line-height: 1.8; color: rgba(26,26,24,0.5); margin-bottom: 1.3rem; }
.product-traits { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1.3rem; }
.trait { padding: 0.3rem 0.7rem; border-radius: var(--pill); font-size: 0.65rem; font-weight: 600; background: var(--beige); color: var(--vert); }

/* ===== QUOTE ===== */
.quote-section { text-align: center; padding: 5rem 5%; background: var(--beige); border-radius: var(--r-lg); margin: 0.8rem 2%; }
.quote-section blockquote {
    font-family: var(--display); font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    line-height: 1.3; max-width: 600px; margin: 0 auto 1rem; color: var(--vert);
    font-style: italic;
}
.quote-section cite { font-style: normal; font-family: var(--body); font-size: 0.72rem; font-weight: 700; color: var(--brun); text-transform: uppercase; letter-spacing: 0.14em; }
.french-flag { display: flex; justify-content: center; margin: 1.2rem auto 0; width: 32px; height: 5px; }
.french-flag span { flex: 1; }
.french-flag span:nth-child(1) { background: #002395; border-radius: 2px 0 0 2px; }
.french-flag span:nth-child(2) { background: #fff; }
.french-flag span:nth-child(3) { background: #ED2939; border-radius: 0 2px 2px 0; }

/* ===== DUAL CTA ===== */
.dual-cta { display: grid; grid-template-columns: 1fr 1fr; max-width: 1040px; margin: 0 auto; border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 6px 30px rgba(31,61,52,0.06); }
.cta-panel { padding: 3rem 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.cta-pro { background: var(--vert); color: var(--beige); }
.cta-part { background: var(--blanc); }
.cta-panel h3 { font-family: var(--cf); font-size: 1.2rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.8rem; line-height: 1.1; }
.cta-panel p { font-size: 0.84rem; line-height: 1.75; margin-bottom: 1.3rem; }
.cta-pro p { color: rgba(242,237,228,0.6); }
.cta-part p { color: rgba(26,26,24,0.5); }
.cta-panel ul { list-style: none; margin-bottom: 1.8rem; }
.cta-panel ul li { font-size: 0.82rem; padding: 0.35rem 0 0.35rem 1.4rem; position: relative; line-height: 1.5; }
.cta-panel ul li::before { content: ''; position: absolute; left: 0; top: 0.6rem; width: 6px; height: 6px; border-radius: 50%; }
.cta-pro ul li { color: rgba(242,237,228,0.7); }
.cta-pro ul li::before { background: var(--sauge); }
.cta-part ul li { color: rgba(26,26,24,0.55); }
.cta-part ul li::before { background: var(--terracotta); }

/* ===== FORM ===== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; max-width: 1040px; margin: 0 auto; align-items: start; }
.form-info h2 { font-family: var(--cf); font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 900; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 1rem; line-height: 1.05; }
.form-info p { font-size: 0.92rem; line-height: 1.85; color: rgba(26,26,24,0.5); margin-bottom: 1.8rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 0.8rem; margin-bottom: 1rem; }
.contact-detail svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; stroke: var(--vert); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.contact-detail span { font-size: 0.86rem; color: rgba(26,26,24,0.55); }

.form-wrap { background: var(--blanc); padding: 2.2rem; border-radius: var(--r-lg); box-shadow: 0 6px 30px rgba(31,61,52,0.05); }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-family: var(--cf); font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.35rem; color: var(--vert); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.75rem 1rem; border: 1.5px solid rgba(162,174,154,0.2); border-radius: 12px;
    font-family: var(--body); font-size: 0.86rem; background: var(--creme); color: var(--noir);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--vert); box-shadow: 0 0 0 3px rgba(31,61,52,0.06); background: var(--blanc); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.form-submit {
    width: 100%; padding: 0.9rem; background: var(--vert); color: var(--beige); border: none; border-radius: var(--pill);
    font-family: var(--cf); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    cursor: pointer; transition: background 0.3s, transform 0.3s; margin-top: 0.3rem;
}
.form-submit:hover { background: #163028; transform: translateY(-1px); }
.form-note { font-size: 0.7rem; color: rgba(26,26,24,0.3); text-align: center; margin-top: 0.6rem; }

/* ===== TIMELINE ===== */
.timeline { max-width: 600px; margin: 0 auto; position: relative; padding-left: 2.5rem; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 0; bottom: 0; width: 2px; background: rgba(162,174,154,0.18); border-radius: 1px; }
.section-vert .timeline::before { background: rgba(242,237,228,0.08); }
.timeline-item { position: relative; margin-bottom: 2.2rem; }
.timeline-dot { position: absolute; left: -2.5rem; top: 0.25rem; width: 16px; height: 16px; border-radius: 50%; background: var(--sauge); border: 3px solid var(--beige); transition: transform 0.3s; }
.section-vert .timeline-dot { border-color: var(--vert); }
.timeline-item:hover .timeline-dot { transform: scale(1.3); }
/* Annees: chiffres "4" absents de la demo Crossfit */
.timeline-year { font-family: var(--body); font-size: 0.85rem; font-weight: 800; color: var(--brun); letter-spacing: 0.06em; margin-bottom: 0.1rem; }
.section-vert .timeline-year { color: var(--sauge); }
.timeline-title { font-family: var(--cf); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.3rem; }
.timeline-desc { font-size: 0.82rem; line-height: 1.75; color: rgba(26,26,24,0.5); }
.section-vert .timeline-desc { color: rgba(242,237,228,0.5); }

/* ===== FOOTER ===== */
.footer { background: var(--vert); color: var(--beige); padding: 4rem 5% 2rem; border-radius: var(--r-lg) var(--r-lg) 0 0; margin-top: 0.8rem; }
.footer-top { text-align: center; margin-bottom: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(242,237,228,0.07); }
.footer-logo { margin-bottom: 0.5rem; }
.footer-logo img { height: 50px; width: auto; filter: brightness(0) invert(0.92); margin: 0 auto; }
.footer-logo-text { font-family: var(--cf); font-size: 1.4rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--beige); margin-bottom: 0.5rem; }
.footer-logo-sub { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sauge); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; max-width: 700px; margin: 0 auto 3rem; text-align: center; }
.footer-col-title { font-family: var(--cf); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.8rem; }
.footer-col a { display: block; font-size: 0.82rem; color: rgba(242,237,228,0.45); margin-bottom: 0.4rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--sauge); }
.footer-bottom { border-top: 1px solid rgba(242,237,228,0.06); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.8rem; max-width: 1140px; margin: 0 auto; }
.footer-bottom p { font-size: 0.7rem; color: rgba(242,237,228,0.25); }
.footer-bottom a { color: var(--sauge); }

/* ===== GAMME & LABEL ===== */
.gamme-img { width: 100%; border-radius: var(--r-lg); box-shadow: 0 12px 40px rgba(31,61,52,0.1); }
.label-badge { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; }
.quote-label { display: flex; justify-content: center; margin-top: 1.5rem; }

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(25px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.95); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.d1{transition-delay:.06s}.d2{transition-delay:.12s}.d3{transition-delay:.18s}.d4{transition-delay:.24s}.d5{transition-delay:.3s}.d6{transition-delay:.36s}.d7{transition-delay:.42s}

/* ===== RESPONSIVE ===== */
@media(max-width:968px){
    .header { gap: 1rem; padding: 0.5rem 0.8rem 0.5rem 1.2rem; }
    .nav { display: none; }
    .burger { display: flex; }
    .split { grid-template-columns: 1fr; gap: 2rem; }
    .split.reverse .split-visual { order: 0; }
    .labo-split { grid-template-columns: 1fr; gap: 2rem; }
    .stats-row-labo { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; max-width: 460px; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .dual-cta { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .card-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .section-vert,.section-beige,.section-blanc,.quote-section { border-radius: 16px; margin: 0.5rem 1%; }
    .marquee-vert { border-radius: 14px; margin: 0 1%; }
}
@media(max-width:640px){
    .section { padding: 4rem 5%; }
    .hero { padding: 7rem 5% 3.5rem; min-height: 80vh; }
    .hero h1 { font-size: clamp(2.8rem, 12vw, 4.5rem); }
    .stats-row { gap: 0.8rem; }
    .stat-item { padding: 1.3rem 0.6rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .dual-cta { border-radius: 14px; }
    .cta-panel { padding: 2rem 1.5rem; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; max-width: 300px; }
    .footer { border-radius: 14px 14px 0 0; }
}
