/* ═══════════════════════════════════════════════════
   CONTINENTAL COMMODITIES — Charte 2026
   Rouge #B42D27 · Or #D19000 / #EAD18F · Look lumineux
   ═══════════════════════════════════════════════════ */

/* ── Fontes auto-hébergées (variables : un fichier par famille) ── */
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/cormorant-garamond.woff2') format('woff2');
    font-weight: 500 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/cormorant-garamond-italic.woff2') format('woff2');
    font-weight: 500 600;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/nunito-sans.woff2') format('woff2');
    font-weight: 300 700;
    font-style: normal;
    font-display: swap;
}

/* ── Tokens ── */
:root {
    --black: #0a0a0a;
    --dark: #111111;
    --dark-2: #1a1a1a;
    --dark-3: #222222;
    --dark-4: #2e2e2e;
    --gray-1: #444;
    --gray-2: #666;
    --gray-3: #757575; /* assombri pour le contraste AA sur fond blanc */
    --gray-4: #aaa;
    --gray-5: #ccc;
    --gray-6: #e2e2e2;
    --gray-7: #f0f0f0;
    --white: #ffffff;
    --cream: #F9F9FA;   /* Light White charte */
    --warm: #F4F2EE;    /* Beige charte */

    --rouge: #B42D27;
    --rouge-dark: #93211c;
    --rouge-dim: rgba(180,45,39,0.08);
    --gold: #D19000;      /* Yellow Gold 1 */
    --gold-light: #EAD18F; /* Yellow Gold 2 */
    --gold-dim: rgba(209,144,0,0.12);

    --ff: 'Nunito Sans', system-ui, -apple-system, sans-serif;
    --ff-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

    --ease: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);

    --max: 1280px;
    --gutter: clamp(1.25rem, 4vw, 3rem);
    --r: 8px;
    --r-lg: 16px;
    --r-xl: 24px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
/* Les cibles d'ancres s'arrêtent sous le header fixé au lieu de passer dessous */
[id] { scroll-margin-top: 96px; }
body { font-family: var(--ff); font-weight: 300; font-size: 1rem; line-height: 1.65; color: var(--dark); background: var(--white); overflow-x: hidden; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Lien d'évitement (navigation clavier) ── */
.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 300;
    padding: 0.75rem 1.5rem; background: var(--rouge); color: var(--white);
    border-radius: 0 0 var(--r) 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ── Layout ── */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 860px; }
.wrap-wide { max-width: 1440px; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 500; line-height: 1.15; color: var(--black); }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.875rem, 4vw, 3rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.125rem, 1.8vw, 1.375rem); }
h4 { font-family: var(--ff); font-weight: 700; font-size: 1rem; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 0.75rem;
    font-family: var(--ff); font-size: 0.6875rem; font-weight: 400;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--rouge);
}
.eyebrow::before {
    content: ''; width: 32px; height: 1px; background: var(--rouge);
}

.lead { font-size: 1.125rem; line-height: 1.75; color: var(--gray-2); }
.muted { color: var(--gray-3); }

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.875rem 2rem; font-size: 0.875rem; font-weight: 600;
    letter-spacing: 0.02em; border-radius: 100px;
    transition: all 0.45s var(--ease);
    position: relative; overflow: hidden;
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(209,144,0,0.3); }
.btn-dark { background: var(--rouge); color: var(--white); }
.btn-dark:hover { background: var(--rouge-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(180,45,39,0.25); }
.btn-outline { background: transparent; color: var(--black); border: 1.5px solid var(--gray-6); }
.btn-outline:hover { border-color: var(--rouge); color: var(--rouge); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.btn .arr { transition: transform 0.4s var(--ease); }
.btn-full { width: 100%; justify-content: center; }
.btn:hover .arr { transform: translateX(4px); }
.btn-lg { padding: 1.0625rem 2.5rem; font-size: 0.9375rem; }

/* ═══════════════════════════
   HEADER
   ═══════════════════════════ */
.header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    transition: all 0.5s var(--ease);
}
.header.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.header-inner {
    max-width: var(--max); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 76px; padding: 0 var(--gutter);
}
/* Logo secondaire horizontal (V2 charte, prescrit pour les petits formats) :
   blanc sur les bandeaux rouges, rouge sur les fonds clairs */
.logo {
    display: flex; align-items: center;
    text-decoration: none; transition: opacity 0.3s ease;
}
.logo:hover { opacity: 0.85; }
.logo-img { height: 44px; width: auto; }
.logo-img-dark { display: none; }
.header-light .logo-img-light, .header.scrolled .logo-img-light { display: none; }
.header-light .logo-img-dark, .header.scrolled .logo-img-dark { display: block; }
/* Logo plus grand sur l'accueil (header rehaussé pour l'accueillir) */
.header-light .logo-img { height: 50px; }
.header-light .header-inner { height: 88px; }
.nav { display: flex; align-items: center; gap: 0.125rem; }
.nav a {
    padding: 0.4375rem 1rem; font-size: 1.125rem; font-weight: 500;
    color: rgba(255,255,255,0.7); border-radius: 100px;
    transition: all 0.3s ease; letter-spacing: 0.01em;
}
.nav a:hover, .nav a.active { color: var(--white); background: rgba(255,255,255,0.12); }
.header.scrolled .nav a { color: var(--gray-1); }
.header.scrolled .nav a:hover, .header.scrolled .nav a.active { color: var(--rouge); background: var(--rouge-dim); }
/* Variante header sur fond clair (accueil) : liens sombres d'emblée */
.header-light .nav a { color: var(--gray-1); }
.header-light .nav a:hover, .header-light .nav a.active { color: var(--rouge); background: var(--rouge-dim); }
.header-light .burger span { background: var(--black); }
/* Sélecteur de langue FR | EN */
.lang { display: flex; align-items: center; gap: 0.375rem; margin-left: 1.25rem; font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.04em; }
.lang a { color: rgba(255,255,255,0.6); padding: 0.25rem 0.25rem; transition: color 0.3s ease; }
.lang a:hover { color: var(--white); }
.lang .lang-active { color: var(--white); }
.lang .lang-sep { color: rgba(255,255,255,0.3); }
.header-light .lang a, .header.scrolled .lang a { color: var(--gray-3); }
.header-light .lang a:hover, .header.scrolled .lang a:hover { color: var(--rouge); }
.header-light .lang .lang-active, .header.scrolled .lang .lang-active { color: var(--rouge); }
.header-light .lang .lang-sep, .header.scrolled .lang .lang-sep { color: var(--gray-5); }
.burger { display: none; width: 28px; height: 28px; position: relative; }
.burger span {
    display: block; width: 20px; height: 1.5px; background: var(--white);
    position: absolute; left: 4px; transition: all 0.35s var(--ease);
}
.header.scrolled .burger span { background: var(--black); }
.burger span:nth-child(1) { top: 9px; }
.burger span:nth-child(2) { top: 14px; width: 14px; }
.burger span:nth-child(3) { top: 19px; }
.burger.open span:nth-child(1) { top: 14px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 14px; transform: rotate(-45deg); }

/* ═══════════════════════════
   HERO (clair : texte sur beige, photo pleine à droite)
   ═══════════════════════════ */
.hero {
    position: relative; min-height: 100vh; min-height: 100dvh;
    display: flex; align-items: center;
    background: var(--warm); overflow: hidden;
}
.hero-photo {
    position: absolute; top: 0; bottom: 0; right: 0; left: 40%;
    background: url('../img/site/hero.webp') center/cover no-repeat;
}
/* Fondu beige → photo pour asseoir la lisibilité du texte,
   + léger voile clair en haut pour la nav */
.hero-bg {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(249,249,250,0.75) 0%, rgba(249,249,250,0) 18%),
        linear-gradient(90deg, var(--warm) 38%, rgba(244,242,238,0) 72%);
}

.hero .wrap { position: relative; z-index: 2; padding-top: 6rem; padding-bottom: 4rem; }
.hero-content { max-width: 680px; }
.hero-content .eyebrow { margin-bottom: 2rem; }
.hero-content h1 { color: var(--black); margin-bottom: 1.5rem; }
.hero-content h1 em { font-style: italic; color: var(--rouge); }
.hero-content .lead { color: var(--gray-2); margin-bottom: 3rem; max-width: 500px; }
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
/* Annonce SIAL sur le hero de l'accueil (jaune du visuel SIAL) */
.hero-sial {
    display: inline-flex; align-items: center; gap: 1rem;
    margin-top: 2.5rem; padding: 0.75rem 1.25rem 0.75rem 0.75rem;
    background: var(--white); border-radius: var(--r-lg);
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
    font-size: 0.875rem; line-height: 1.5; color: var(--gray-1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-sial:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.16); }
.hero-sial-badge {
    background: #fee81b; color: var(--black);
    font-weight: 700; font-size: 0.75rem; letter-spacing: 0.06em;
    padding: 0.5rem 0.875rem; border-radius: 100px; white-space: nowrap;
}
.hero-sial strong { color: var(--rouge); }
.hero-sial .arr { color: var(--rouge); }

/* ═══════════════════════════
   PAGE HERO (pages intérieures)
   ═══════════════════════════ */
.page-hero {
    background: var(--rouge); padding: 10rem 0 4rem; position: relative; overflow: hidden;
}
.page-hero .eyebrow { margin-bottom: 1.25rem; color: var(--gold-light); }
.page-hero .eyebrow::before { background: var(--gold-light); }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero .lead { color: rgba(255,255,255,0.8); max-width: 540px; }
.page-hero .lead a { color: var(--gold-light); text-decoration: underline; transition: color 0.3s ease; }
.page-hero .lead a:hover { color: var(--white); }
.page-hero .wrap { position: relative; z-index: 2; }

/* ═══════════════════════════
   SECTIONS
   ═══════════════════════════ */
.section { padding: clamp(5rem, 10vw, 8rem) 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-warm { background: var(--warm); }
.section-cream { background: var(--cream); }

.section-top { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-top-flex { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; }
.section-top .eyebrow { margin-bottom: 1rem; }
.section-top h2 { margin-bottom: 0; }
.section-top p { color: var(--gray-3); max-width: 480px; margin-top: 1rem; }
.section-top-center { text-align: center; }
.section-top-center .eyebrow { justify-content: center; }
.section-top-center p { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════
   ABOUT (homepage)
   ═══════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 6rem); align-items: center; }
.about-text .eyebrow { margin-bottom: 1.25rem; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text .lead { margin-bottom: 2rem; }
.about-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.about-pill {
    padding: 0.5rem 1rem; background: var(--warm); border: 1px solid var(--gray-6);
    border-radius: 100px; font-size: 0.8125rem; font-weight: 600; color: var(--gray-1);
    transition: all 0.3s ease;
}
.about-pill:hover { border-color: var(--rouge); color: var(--rouge); }
.about-img {
    position: relative; border-radius: var(--r-xl); overflow: hidden;
    aspect-ratio: 4/5; background: var(--warm);
    display: flex; align-items: center; justify-content: center;
}
.about-img-pattern {
    position: absolute; inset: 0; opacity: 0.08;
    background-image: radial-gradient(var(--gray-4) 1px, transparent 1px);
    background-size: 16px 16px;
}
.about-img img {
    width: 100%; height: 100%; object-fit: cover;
    position: absolute; inset: 0; border-radius: var(--r-xl);
}

/* ═══════════════════════════
   CATEGORIES GRID
   ═══════════════════════════ */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--gray-6); border-radius: var(--r-lg); overflow: hidden; }
.cat-card {
    background: var(--white); padding: 2.5rem 2rem;
    transition: all 0.4s var(--ease); cursor: pointer; position: relative;
    display: flex; flex-direction: column;
}
.cat-card::after {
    content: ''; position: absolute; bottom: 0; left: 2rem; right: 2rem; height: 2px;
    background: var(--gold); transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s var(--ease);
}
.cat-card:hover { background: var(--cream); }
.cat-card:hover::after { transform: scaleX(1); }
.cat-num { font-family: var(--ff-display); font-size: 2.5rem; font-weight: 500; color: var(--gray-7); line-height: 1; margin-bottom: 1.25rem; transition: color 0.4s ease; }
.cat-card:hover .cat-num { color: var(--gold-dim); }
.cat-card h3 { margin-bottom: 0.5rem; }
.cat-card p { font-size: 0.875rem; color: var(--gray-3); line-height: 1.6; flex: 1; }
.cat-brands { display: flex; flex-wrap: wrap; align-items: center; gap: 0.875rem; margin-top: 1rem; }
/* Logos de marques : discrets par défaut, en couleur au survol de la carte */
.cat-brands img {
    height: 26px; width: auto; max-width: 80px; object-fit: contain;
    filter: grayscale(1); opacity: 0.65; transition: all 0.4s ease;
}
.cat-card:hover .cat-brands img { filter: none; opacity: 1; }
.cat-arrow {
    display: flex; align-items: center; gap: 0.375rem; margin-top: 1.25rem;
    font-size: 0.8125rem; font-weight: 600; color: var(--rouge);
    opacity: 0; transform: translateY(8px);
    transition: all 0.4s var(--ease);
}
.cat-card:hover .cat-arrow { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════
   STATS
   ═══════════════════════════ */
.stats { padding: clamp(4rem, 8vw, 5.5rem) 0; background: var(--rouge); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat { text-align: center; }
.stat-num { font-family: var(--ff-display); font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 500; color: var(--white); line-height: 1; }
.stat-num .suf { font-size: 0.55em; color: var(--gold-light); }
.stat-label { margin-top: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.8); font-weight: 400; }
.stat-line { width: 20px; height: 1px; background: rgba(255,255,255,0.25); margin: 0.75rem auto 0; }

/* ═══════════════════════════
   BRANDS (carousel pills)
   ═══════════════════════════ */
.brands-scroll-wrap { position: relative; }
.brands-scroll {
    display: flex; gap: 0.625rem; overflow-x: auto; scroll-behavior: smooth;
    scrollbar-width: none; padding: 0.5rem 0;
    mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
}
.brands-scroll::-webkit-scrollbar { display: none; }
.brand-pill {
    flex: 0 0 auto; padding: 0.75rem 1.5rem;
    display: flex; align-items: center;
    background: var(--white); border: 1px solid var(--gray-6); border-radius: 100px;
    white-space: nowrap; transition: all 0.35s var(--ease);
}
.brand-pill img { height: 38px; width: auto; max-width: 110px; object-fit: contain; }
.brand-pill:hover { border-color: var(--rouge); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.brands-nav { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
.brands-nav button {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid var(--gray-6); background: var(--white);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease; color: var(--dark);
}
.brands-nav button:hover { background: var(--black); border-color: var(--black); color: var(--white); }

/* ═══════════════════════════
   NEWS CARDS
   ═══════════════════════════ */
.news-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 1.25rem; }
.news-card {
    background: var(--white); border-radius: var(--r-lg); overflow: hidden;
    border: 1px solid var(--gray-7); transition: all 0.4s var(--ease);
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.06); border-color: transparent; }
.news-card:first-child { grid-row: span 2; }
.news-card:first-child .news-img { height: 100%; min-height: 280px; }
.news-card:first-child .news-body {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem;
    background: linear-gradient(to top, rgba(10,10,10,0.88) 0%, transparent 100%);
}
.news-card:first-child { position: relative; }
/* Une seule actualité : pleine largeur, visuel entier sur fond assorti
   (jaune du visuel SIAL), texte sous l'image */
.news-grid .news-card:only-child { grid-column: 1 / -1; grid-row: auto; }
.news-grid .news-card:only-child .news-img { min-height: 320px; height: auto; aspect-ratio: 21/9; background: #fee81b; }
.news-grid .news-card:only-child .news-img img { object-fit: contain; }
.news-grid .news-card:only-child .news-body,
.news-grid .news-card:first-child:nth-last-child(2) .news-body { position: static; background: none; padding: 1.75rem 2rem; }
.news-grid .news-card:only-child .news-body *,
.news-grid .news-card:first-child:nth-last-child(2) .news-body * { color: inherit !important; }
.news-grid .news-card:only-child .news-tag,
.news-grid .news-card:first-child:nth-last-child(2) .news-tag { background: var(--gold); color: var(--black) !important; }
/* Deux actualités : deux cartes jumelles côte à côte */
.news-grid:has(.news-card:first-child:nth-last-child(2)) { grid-template-columns: 1fr 1fr; }
.news-grid .news-card:first-child:nth-last-child(2) { grid-row: auto; position: static; }
.news-grid .news-card:first-child:nth-last-child(2) .news-img,
.news-grid .news-card:first-child:nth-last-child(2) ~ .news-card .news-img { height: auto; min-height: auto; aspect-ratio: auto; }
.news-grid .news-card:first-child:nth-last-child(2) .news-img img,
.news-grid .news-card:first-child:nth-last-child(2) ~ .news-card .news-img img { height: auto; object-fit: contain; }
.news-card:first-child .news-body * { color: var(--white) !important; }
.news-card:first-child .news-tag { background: var(--gold); color: var(--black) !important; }
.news-img {
    aspect-ratio: 16/10; background: linear-gradient(135deg, var(--gray-7), var(--warm));
    display: flex; align-items: center; justify-content: center;
}
.news-img svg { opacity: 0.12; }
.news-img img { width: 100%; height: 100%; object-fit: cover; }
.news-body { padding: 1.5rem; }
.news-tag {
    display: inline-block; padding: 0.25rem 0.625rem; margin-bottom: 0.75rem;
    font-size: 0.625rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    background: var(--gray-7); border-radius: 100px; color: var(--gray-3);
}
.news-body h3 { margin-bottom: 0.5rem; }
.news-body h3 a { transition: color 0.3s ease; }
.news-body h3 a:hover { color: var(--gold); }
.news-body p { font-size: 0.875rem; color: var(--gray-3); line-height: 1.65; }
.news-date { display: block; margin-top: 0.75rem; font-size: 0.75rem; color: var(--gray-3); font-weight: 500; }

/* ═══════════════════════════
   CTA BLOCK
   ═══════════════════════════ */
.cta-block {
    background: var(--rouge); border-radius: var(--r-xl); padding: clamp(3.5rem, 7vw, 5.5rem);
    text-align: center; position: relative; overflow: hidden;
}
.cta-block::before {
    content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(234,209,143,0.18), transparent 60%);
}
.cta-block > * { position: relative; z-index: 2; }
.cta-block .eyebrow { justify-content: center; margin-bottom: 1.5rem; color: var(--gold-light); }
.cta-block .eyebrow::before { background: var(--gold-light); }
.cta-block h2 { color: var(--white); margin-bottom: 1rem; }
.cta-block p { color: rgba(255,255,255,0.85); max-width: 460px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }

/* ═══════════════════════════
   CONTACT
   ═══════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 1.5rem; }
.contact-info {
    background: var(--rouge); color: var(--white); border-radius: var(--r-xl); padding: 2.5rem;
}
.contact-info h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 2rem; }
.c-item { display: flex; gap: 1rem; padding: 1.125rem 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.c-item:last-child { border-bottom: none; }
.c-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.12); border-radius: 12px; color: var(--gold-light);
}
.c-label { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 0.25rem; }
.c-value { font-size: 0.9375rem; color: rgba(255,255,255,0.92); line-height: 1.5; }
.c-value a { color: rgba(255,255,255,0.92); transition: color 0.3s ease; }
.c-value a:hover { color: var(--gold-light); }

.contact-form {
    background: var(--cream); border: 1px solid var(--gray-7); border-radius: var(--r-xl); padding: 2.5rem;
}
.contact-form h3 { font-size: 1.5rem; margin-bottom: 1.75rem; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-group { margin-bottom: 1rem; }
.f-group label { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--dark); margin-bottom: 0.375rem; }
.f-group input, .f-group select, .f-group textarea {
    width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--gray-6);
    border-radius: var(--r); background: var(--white); font-family: var(--ff);
    font-size: 0.9375rem; color: var(--dark); transition: all 0.3s ease;
}
.f-group input:focus, .f-group select:focus, .f-group textarea:focus {
    outline: none; border-color: var(--rouge); box-shadow: 0 0 0 3px var(--rouge-dim);
}
.f-group textarea { resize: vertical; min-height: 120px; }
/* Piège anti-spam : champ invisible pour les humains */
.f-honey { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.f-status { margin-top: 1rem; font-size: 0.875rem; text-align: center; }
.f-status.ok { color: #2a7d4f; }
.f-status.err { color: var(--rouge); }
.f-status a { text-decoration: underline; }

/* ═══════════════════════════
   PRODUCT PAGE — Detailed grid
   ═══════════════════════════ */
.product-section { padding: clamp(4rem, 8vw, 6rem) 0; border-bottom: 1px solid var(--gray-7); }
.product-section:last-child { border-bottom: none; }
.product-section:nth-child(even) { background: var(--cream); }
.product-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2.5rem; }
.product-header-num {
    font-family: var(--ff-display); font-size: 3rem; font-weight: 500;
    color: var(--rouge); line-height: 1; opacity: 0.35;
}
.product-header h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.25rem; }
.product-header p { font-size: 0.9375rem; color: var(--gray-3); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; }
.product-card {
    background: var(--white); border: 1px solid var(--gray-7); border-radius: var(--r-lg);
    overflow: hidden; transition: all 0.4s var(--ease);
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.06); border-color: transparent; }
/* Vignette cliquable : zoom plein écran (même lightbox que la page Marques) */
.product-card-img {
    width: 100%; padding: 0; cursor: zoom-in;
    aspect-ratio: 4/3; background: linear-gradient(135deg, var(--warm), var(--gray-7));
    display: flex; align-items: center; justify-content: center; position: relative;
}
.product-card-img svg { opacity: 0.1; }
/* Le fond dégradé vient du parent .product-card-img */
.product-card-img img {
    width: 100%; height: 100%; object-fit: contain; padding: 1rem;
    transition: transform 0.4s var(--ease);
}
.product-card-img:hover img { transform: scale(1.05); }
.product-card-brand {
    position: absolute; top: 0.75rem; left: 0.75rem;
    padding: 0.25rem 0.625rem; background: var(--gold); border-radius: 100px;
    font-size: 0.625rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--black);
}
.product-card-body { padding: 1.25rem; }
.product-card-body h4 { margin-bottom: 0.25rem; }
.product-card-body p { font-size: 0.8125rem; color: var(--gray-3); }
/* Lien vers le spot TV de la marque (page actualités) */
.spot-link {
    display: inline-flex; align-items: center; gap: 0.375rem; margin-top: 0.625rem;
    font-size: 0.8125rem; font-weight: 600; color: var(--rouge);
    transition: gap 0.3s ease;
}
.spot-link:hover { gap: 0.625rem; text-decoration: underline; }

/* ═══════════════════════════
   BRANDS PAGE — Detailed
   ═══════════════════════════ */
.brands-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; }
.brand-card {
    background: var(--white); border: 1px solid var(--gray-7); border-radius: var(--r-lg);
    padding: 2rem; transition: all 0.4s var(--ease);
}
.brand-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.06); border-color: transparent; }
/* Photo de la gamme, cliquable pour zoomer */
.brand-photo {
    display: block; width: 100%; aspect-ratio: 4/3; padding: 0;
    background: linear-gradient(135deg, var(--warm), var(--gray-7));
    border-radius: var(--r); overflow: hidden; margin-bottom: 1.25rem;
    cursor: zoom-in;
}
.brand-photo img {
    width: 100%; height: 100%; object-fit: contain; padding: 0.75rem;
    transition: transform 0.4s var(--ease);
}
.brand-photo:hover img { transform: scale(1.05); }
.brand-card h3 { margin-bottom: 0.375rem; }
.brand-card .brand-cat {
    font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--rouge); margin-bottom: 0.75rem; display: block;
}
.brand-card p { font-size: 0.875rem; color: var(--gray-3); line-height: 1.6; }

/* ═══════════════════════════
   ARTICLES PAGE
   ═══════════════════════════ */
.article-card {
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 0; border-radius: var(--r-lg);
    overflow: hidden; background: var(--white); border: 1px solid var(--gray-7);
    transition: all 0.4s var(--ease); margin-bottom: 1.25rem;
}
.article-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.06); border-color: transparent; }
.article-card-img {
    background: linear-gradient(135deg, var(--warm), var(--gray-7));
    display: flex; align-items: center; justify-content: center; min-height: 200px;
}
.article-card-img svg { opacity: 0.1; }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; }
.article-card-body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.article-card-body .news-tag { margin-bottom: 0.75rem; }
.article-card-body h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.article-card-body p { font-size: 0.9375rem; color: var(--gray-3); line-height: 1.7; margin-bottom: 1rem; }
.article-card-body .read-more { font-size: 0.8125rem; font-weight: 600; color: var(--rouge); display: inline-flex; align-items: center; gap: 0.375rem; transition: gap 0.3s ease; }
.article-card-body .read-more:hover { gap: 0.625rem; }

/* ═══════════════════════════
   VIDEO GRID
   ═══════════════════════════ */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 1.5rem; }
.video-card {
    background: var(--white); border: 1px solid var(--gray-7); border-radius: var(--r-lg);
    overflow: hidden; transition: all 0.4s var(--ease);
}
.video-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.06); }
/* Lecteur natif : vignette poster, chargement au clic (preload=none) */
.video-card video {
    display: block; width: 100%; height: auto;
    aspect-ratio: 16/9; background: var(--black); object-fit: contain;
}
.video-card-body { padding: 1.25rem; }
.video-card-body h3 { font-size: 1rem; }
.video-card-body p { font-size: 0.8125rem; color: var(--gray-3); margin-top: 0.25rem; }

/* ═══════════════════════════
   PAGE CONTENT (legal, etc.)
   ═══════════════════════════ */
.wrap-narrow h2 { margin-top: 2.5rem; margin-bottom: 1rem; font-size: clamp(1.375rem, 2.5vw, 1.75rem); }
.wrap-narrow h2:first-child { margin-top: 0; }
.wrap-narrow h3 { margin-top: 1.5rem; margin-bottom: 0.5rem; font-size: 1rem; font-family: var(--ff); color: var(--gray-1); }
.wrap-narrow p { color: var(--gray-2); line-height: 1.8; margin-bottom: 0.75rem; }
.wrap-narrow p a { color: var(--rouge); transition: color 0.3s ease; }
.wrap-narrow p a:hover { color: var(--rouge-dark); }
.wrap-narrow > div { margin-bottom: 2rem; }
.wrap-narrow > div:last-child { margin-bottom: 0; }

/* ═══════════════════════════
   FOOTER
   ═══════════════════════════ */
.footer { background: var(--warm); color: var(--gray-2); padding-top: 4rem; border-top: 1px solid var(--gray-7); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand { margin-bottom: 1.25rem; }
.footer-brand img { height: 62px; width: auto; }
.footer-desc { font-size: 0.9375rem; line-height: 1.7; }
.footer h4 { font-family: var(--ff); font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-3); margin-bottom: 1.25rem; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.9375rem; color: var(--gray-2); transition: color 0.3s ease; }
.footer-links a:hover { color: var(--rouge); }
.footer-c { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 0.625rem; font-size: 0.9375rem; }
.footer-c svg { flex-shrink: 0; color: var(--rouge); opacity: 0.7; }
.footer-c a { color: var(--gray-2); transition: color 0.3s ease; }
.footer-c a:hover { color: var(--rouge); }
.footer-bar { border-top: 1px solid var(--gray-6); padding: 1.25rem 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.8125rem; }
.footer-bar a:hover { color: var(--rouge); }

/* ═══════════════════════════
   LIGHTBOX (zoom photos de gammes)
   ═══════════════════════════ */
.lightbox {
    position: fixed; inset: 0; z-index: 200;
    display: flex; align-items: center; justify-content: center;
    background: rgba(10,10,10,0.82); padding: 2rem;
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
    cursor: zoom-out;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
    max-width: min(90vw, 1000px); max-height: 85vh; object-fit: contain;
    background: var(--white); border-radius: var(--r-lg); padding: 1.5rem;
}
.lightbox-close {
    position: absolute; top: 1.25rem; right: 1.5rem;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.12); color: var(--white);
    font-size: 1.5rem; line-height: 1; transition: background 0.3s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

/* ═══════════════════════════
   ANIMATIONS
   ═══════════════════════════ */
[data-r] { opacity: 0; transform: translateY(36px); transition: opacity 0.7s var(--ease-expo), transform 0.7s var(--ease-expo); }
[data-r].v { opacity: 1; transform: translateY(0); }
[data-r="l"] { transform: translateX(-36px) translateY(0); }
[data-r="l"].v { transform: translateX(0); }
[data-r="r"] { transform: translateX(36px) translateY(0); }
[data-r="r"].v { transform: translateX(0); }
[data-r="s"] { transform: scale(0.96); }
[data-r="s"].v { transform: scale(1); }
[data-sg] > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s var(--ease-expo), transform 0.5s var(--ease-expo); }
[data-sg].v > *:nth-child(1) { transition-delay: 0s; }
[data-sg].v > *:nth-child(2) { transition-delay: 0.06s; }
[data-sg].v > *:nth-child(3) { transition-delay: 0.12s; }
[data-sg].v > *:nth-child(4) { transition-delay: 0.18s; }
[data-sg].v > *:nth-child(5) { transition-delay: 0.24s; }
[data-sg].v > *:nth-child(6) { transition-delay: 0.30s; }
[data-sg].v > * { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════
   RESPONSIVE
   ═══════════════════════════ */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-img { max-height: 360px; aspect-ratio: 16/9; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: 1fr 1fr; }
    .news-card:first-child { grid-column: span 2; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .article-card { grid-template-columns: 1fr; }
    .article-card-img { min-height: 200px; }
}
@media (max-width: 768px) {
    .burger { display: block; }
    .nav {
        position: fixed; top: 76px; left: 0; width: 100%;
        background: var(--white); flex-direction: column;
        padding: 1rem var(--gutter) 2rem; gap: 0.125rem;
        transform: translateY(-120%); transition: transform 0.5s var(--ease); z-index: 99;
        box-shadow: 0 16px 32px rgba(0,0,0,0.08);
    }
    .nav.open { transform: translateY(0); }
    .nav a { padding: 0.75rem 1rem; font-size: 1rem; border-radius: var(--r); color: var(--gray-1); }
    .nav a:hover, .nav a.active { color: var(--rouge); background: var(--rouge-dim); }
    .section-top-flex { flex-direction: column; align-items: flex-start; }
    .cat-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .news-card:first-child { grid-column: auto; grid-row: auto; }
    .news-card:first-child .news-img { height: auto; aspect-ratio: 16/10; min-height: auto; }
    .news-card:first-child .news-body { position: static; background: none; padding: 1.5rem; }
    .news-card:first-child .news-body * { color: inherit !important; }
    .news-card:first-child .news-tag { background: var(--gray-7); color: var(--gray-3) !important; }
    .f-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bar { flex-direction: column; gap: 0.5rem; text-align: center; }
    /* Header accueil : retour à la hauteur standard sur mobile */
    .header-light .logo-img { height: 40px; }
    .header-light .header-inner { height: 76px; }
    .logo-img { height: 36px; }
    .hero-sial { border-radius: var(--r-lg); flex-wrap: wrap; padding: 0.75rem 1rem; margin-top: 2rem; }
    /* Sur mobile, la photo passe en filigrane derrière le texte */
    .hero-photo { left: 0; opacity: 0.15; }
    .hero-bg { background: none; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; text-align: center; }
    .video-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    .brands-grid { grid-template-columns: 1fr; }
}
