/* ============ TABLONOIR BRAND — landing marque uniquement ============ */
/* Chargé seulement sur home / planeo / studio.
   Toutes les règles sont scopées dans .brand-scope pour zero conflit
   avec catalogue.html, product.html, module.html, matiere.html. */

.brand-scope {
  --b-noir: #161312;
  --b-gris900: #2A2522;
  --b-gris700: #5F5854;
  --b-gris500: #908884;
  --b-gris300: #D4CDC6;
  --b-gris200: #E8E2DB;
  --b-gris100: #F0EBE4;
  --b-creme: #F4EFE8;
  --b-blanc: #FBF8F3;
  /* Accent = bleu craie (métaphore tableau noir) */
  --b-accent: #2E74E6;
  --b-accentDark: #1F63D2;
  --b-accentSoft: #E8F1FE;
  /* Aliases pour rétro-compat (à supprimer plus tard) */
  --b-rouge: #2E74E6;
  --b-rougeDark: #1F63D2;
  --b-vert: #2D7D5F;
  --b-or: #B8923A;
  --b-bleu: #2E74E6;
  --b-violet: #6E4FB8;
  --b-orange: #D46A2E;
  --b-fDisplay: 'Anton', 'Bebas Neue', Impact, sans-serif;
  --b-fBody: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --b-fSerif: 'Fraunces', Georgia, serif;
  --b-fMono: 'DM Mono', 'IBM Plex Mono', 'Courier New', monospace;
  font-family: var(--b-fBody);
  color: var(--b-noir);
  background: var(--b-blanc);
  line-height: 1.55;
}
.brand-scope * { box-sizing: border-box; }
.brand-scope a { color: var(--b-noir); text-decoration: none; }
.brand-scope a:hover { color: var(--b-rouge); }
.brand-scope .brand-container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.brand-scope .b-display { font-family: var(--b-fDisplay); text-transform: uppercase; line-height: 0.92; letter-spacing: 0.5px; font-weight: 400; }
.brand-scope .b-mono { font-family: var(--b-fMono); text-transform: uppercase; letter-spacing: 1.5px; font-size: 11px; }
.brand-scope .b-it { font-family: var(--b-fSerif); font-style: italic; text-transform: none; }
.brand-scope .b-em { color: var(--b-rouge); }

/* HERO */
.brand-scope .b-hero { padding: 90px 0 110px; background: var(--b-blanc); border-bottom: 1px solid var(--b-gris300); }
.brand-scope .b-hero-meta { display: flex; align-items: center; gap: 20px; margin-bottom: 50px; flex-wrap: wrap; font-family: var(--b-fMono); font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; }
.brand-scope .b-hero-badge { background: var(--b-noir); color: var(--b-blanc); padding: 6px 14px; display: inline-flex; align-items: center; gap: 8px; }
.brand-scope .b-hero-badge .b-dot { width: 6px; height: 6px; background: #4AC97C; border-radius: 50%; animation: b-pulse 2s infinite; }
.brand-scope .b-hero-metaItem { color: var(--b-gris500); }
.brand-scope .b-hero-title { font-family: var(--b-fDisplay); font-size: clamp(58px, 11vw, 172px); line-height: 0.92; margin-bottom: 50px; color: var(--b-noir); text-transform: uppercase; }
.brand-scope .b-hero-title .b-it { color: var(--b-rouge); }
.brand-scope .b-hero-sub { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; margin-bottom: 44px; max-width: 960px; }
.brand-scope .b-hero-subLabel { font-family: var(--b-fMono); font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--b-rouge); margin-bottom: 12px; }
.brand-scope .b-hero-sub p { font-size: 18px; line-height: 1.6; color: var(--b-gris900); margin: 0; }
.brand-scope .b-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
@keyframes b-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* BUTTONS */
.brand-scope .b-btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--b-fMono); font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; padding: 16px 26px; border: none; cursor: pointer; }
.brand-scope .b-btn-dark { background: var(--b-noir); color: var(--b-blanc); }
.brand-scope .b-btn-dark:hover { background: var(--b-rouge); color: var(--b-blanc); }
.brand-scope .b-btn-light { background: transparent; color: var(--b-noir); border: 1px solid var(--b-noir); }
.brand-scope .b-btn-light:hover { background: var(--b-noir); color: var(--b-blanc); }
.brand-scope .b-btn-outline { background: transparent; color: var(--b-creme); border: 1px solid var(--b-creme); }
.brand-scope .b-btn-outline:hover { background: var(--b-creme); color: var(--b-noir); }

/* MARQUEE */
.brand-scope .b-marquee { background: var(--b-noir); color: var(--b-blanc); padding: 22px 0; overflow: hidden; }
.brand-scope .b-marquee-track { display: flex; gap: 40px; white-space: nowrap; animation: b-scrollLeft 40s linear infinite; }
.brand-scope .b-marquee-item { font-family: var(--b-fDisplay); font-size: 42px; letter-spacing: 2px; text-transform: uppercase; }
.brand-scope .b-marquee-item .b-star { color: var(--b-rouge); margin: 0 20px; }
@keyframes b-scrollLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SECTION HEADS */
.brand-scope .b-secHead { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; gap: 40px; }
.brand-scope .b-secHead .b-lbl { color: var(--b-gris500); letter-spacing: 2px; }
.brand-scope .b-secHead .b-lblRight { color: var(--b-gris500); text-align: right; line-height: 1.7; }
.brand-scope .b-secHead h2 { font-family: var(--b-fDisplay); font-size: clamp(42px, 6vw, 84px); text-transform: uppercase; line-height: 1; margin: 8px 0 0; color: var(--b-noir); }

/* MANIFESTE */
.brand-scope .b-manifeste { padding: 100px 0; background: var(--b-creme); border-bottom: 1px solid var(--b-gris300); }
.brand-scope .b-manifeste-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--b-gris300); border: 1px solid var(--b-gris300); }
.brand-scope .b-conv { background: var(--b-creme); padding: 48px 36px; transition: background 0.2s; }
.brand-scope .b-conv:hover { background: var(--b-blanc); }
.brand-scope .b-conv-num { font-family: var(--b-fDisplay); font-size: 64px; color: var(--b-rouge); line-height: 1; margin-bottom: 24px; }
.brand-scope .b-conv h3 { font-family: var(--b-fDisplay); font-size: 26px; text-transform: uppercase; color: var(--b-noir); margin: 0 0 18px; letter-spacing: 0.5px; }
.brand-scope .b-conv p { color: var(--b-gris900); font-size: 15px; line-height: 1.7; margin: 0; }
.brand-scope .b-conv em { font-family: var(--b-fSerif); font-style: italic; color: var(--b-noir); }

/* PRODUITS EDITORIAL */
.brand-scope .b-products { padding: 100px 0; background: var(--b-blanc); }
.brand-scope .b-prodRow { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--b-gris300); min-height: 520px; }
.brand-scope .b-prodRow:last-child { border-bottom: 1px solid var(--b-gris300); }
.brand-scope .b-prodReverse .b-prodVisual { order: 2; }
.brand-scope .b-prodReverse .b-prodContent { order: 1; border-right: 1px solid var(--b-gris300); border-left: none; }
.brand-scope .b-prodContent { border-left: 1px solid var(--b-gris300); padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; background: var(--b-blanc); }
.brand-scope .b-prodVisual { background: var(--b-creme); display: flex; align-items: center; justify-content: center; padding: 60px; overflow: hidden; }
.brand-scope .b-prod-fiches .b-prodVisual { background: linear-gradient(135deg, #FBF6ED, #F0EBE4); }
.brand-scope .b-prod-mag .b-prodVisual { background: linear-gradient(135deg, #2A2522, #161312); }
.brand-scope .b-prod-planeo .b-prodVisual { background: linear-gradient(135deg, #EDE7F5, #DDD3ED); }
.brand-scope .b-prod-studio .b-prodVisual { background: linear-gradient(135deg, #2A2522, #161312); }
.brand-scope .b-prodVisual-inner { width: 100%; max-width: 420px; filter: drop-shadow(0 8px 40px rgba(22,19,18,0.15)); transition: transform 0.4s cubic-bezier(.2,.7,.2,1); }
.brand-scope .b-prodRow:hover .b-prodVisual-inner { transform: translateY(-6px) rotate(-1deg); }
.brand-scope .b-prodSvg { width: 100%; height: auto; display: block; }
.brand-scope .b-prodTaglineRow { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.brand-scope .b-prodNumBig { font-family: var(--b-fDisplay); font-size: 66px; color: var(--b-rouge); line-height: 0.9; }
.brand-scope .b-prodBadge { font-family: var(--b-fMono); font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; background: var(--b-gris100); color: var(--b-gris700); padding: 5px 10px; }
.brand-scope .b-prodBadgeLive { background: var(--b-vert); color: var(--b-blanc); }
.brand-scope .b-prodNameBig { font-family: var(--b-fDisplay); font-size: clamp(46px, 5vw, 80px); text-transform: uppercase; color: var(--b-noir); margin: 0 0 14px; letter-spacing: 1px; }
.brand-scope .b-prodTaglineBig { font-family: var(--b-fSerif); font-style: italic; font-size: 21px; line-height: 1.35; color: var(--b-rouge); margin: 0 0 24px; }
.brand-scope .b-prodDescBig { font-size: 16px; line-height: 1.7; color: var(--b-gris900); margin: 0 0 24px; }
.brand-scope .b-prodDescBig strong { color: var(--b-noir); font-weight: 700; }
.brand-scope .b-prodTagsList { list-style: none; padding: 0; margin: 0 0 30px; display: flex; flex-wrap: wrap; gap: 8px; }
.brand-scope .b-prodTagsList li { font-family: var(--b-fMono); font-size: 10px; text-transform: uppercase; letter-spacing: 1.2px; padding: 6px 12px; border: 1px solid var(--b-gris300); color: var(--b-gris700); }
.brand-scope .b-prodCtaBig { font-family: var(--b-fMono); font-size: 12px; text-transform: uppercase; letter-spacing: 1.8px; color: var(--b-noir); padding-bottom: 6px; border-bottom: 2px solid var(--b-noir); display: inline-flex; align-items: center; gap: 10px; align-self: flex-start; }
.brand-scope .b-prodCtaBig:hover { color: var(--b-rouge); border-color: var(--b-rouge); }

/* MAG FEATURE */
.brand-scope .b-magFeature { padding: 100px 0; background: var(--b-noir); color: var(--b-creme); }
.brand-scope .b-magFeature .b-secHead h2 { color: var(--b-creme); }
.brand-scope .b-magFeature .b-secHead .b-lbl, .brand-scope .b-magFeature .b-secHead .b-lblRight { color: var(--b-gris500); }
.brand-scope .b-magLead { max-width: 780px; margin: 0 0 60px; font-size: 20px; line-height: 1.6; color: var(--b-gris300); padding-left: 24px; border-left: 3px solid var(--b-rouge); }
.brand-scope .b-magLead strong { color: var(--b-creme); }
.brand-scope .b-magGrid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; margin-bottom: 48px; }
.brand-scope .b-magCard { background: var(--b-gris900); border: 1px solid var(--b-gris700); color: var(--b-creme); display: flex; flex-direction: column; overflow: hidden; }
.brand-scope .b-magCard:hover { border-color: var(--b-rouge); color: var(--b-creme); }
.brand-scope .b-magFeatured { grid-row: span 3; }
.brand-scope .b-magCover { min-height: 180px; position: relative; display: flex; align-items: flex-end; padding: 20px; }
.brand-scope .b-magCover1 { min-height: 340px; background: linear-gradient(135deg, #2E74E6, #133266); }
.brand-scope .b-magCover2 { background: linear-gradient(135deg, #2B5FAD, #143a72); }
.brand-scope .b-magCover3 { background: linear-gradient(135deg, #2D7D5F, #1a4a37); }
.brand-scope .b-magCover4 { background: linear-gradient(135deg, #B8923A, #6d5620); }
.brand-scope .b-magCat { font-family: var(--b-fMono); font-size: 10px; text-transform: uppercase; letter-spacing: 2px; background: rgba(255,255,255,0.18); color: var(--b-creme); padding: 5px 10px; }
.brand-scope .b-magBody { padding: 24px 26px; flex: 1; }
.brand-scope .b-magFeatured .b-magBody { padding: 32px 34px; }
.brand-scope .b-magMeta { color: var(--b-gris500); margin-bottom: 12px; font-family: var(--b-fMono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; }
.brand-scope .b-magBody h3 { font-family: var(--b-fDisplay); font-size: 30px; text-transform: uppercase; line-height: 1.05; letter-spacing: 0.5px; color: var(--b-creme); margin: 0 0 14px; }
.brand-scope .b-magBody h4 { font-family: var(--b-fSerif); font-size: 19px; font-weight: 600; line-height: 1.3; color: var(--b-creme); margin: 0; }
.brand-scope .b-magBody p { color: var(--b-gris300); font-size: 15px; line-height: 1.6; margin: 0; }
.brand-scope .b-magSide { display: flex; flex-direction: column; gap: 32px; }
.brand-scope .b-magCtaBand { border-top: 1px solid var(--b-gris700); padding-top: 40px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.brand-scope .b-magFeature .b-btn-dark { background: var(--b-rouge); color: var(--b-blanc); }
.brand-scope .b-magFeature .b-btn-dark:hover { background: var(--b-creme); color: var(--b-noir); }
.brand-scope .b-magCtaBand .b-mono { color: var(--b-gris500); }

/* STATS */
.brand-scope .b-stats { padding: 100px 0; background: var(--b-creme); border-bottom: 1px solid var(--b-gris300); }
.brand-scope .b-statsGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--b-gris300); border: 1px solid var(--b-gris300); }
.brand-scope .b-stat { background: var(--b-creme); padding: 40px 30px; }
.brand-scope .b-statV { font-family: var(--b-fDisplay); font-size: 88px; color: var(--b-noir); line-height: 1; margin-bottom: 16px; }
.brand-scope .b-statK { font-family: var(--b-fMono); font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--b-rouge); margin-bottom: 12px; }
.brand-scope .b-statNote { font-size: 13px; line-height: 1.55; color: var(--b-gris700); margin: 0; }

/* BIG CTA */
.brand-scope .b-bigCta { padding: 140px 0; background: var(--b-noir); color: var(--b-creme); text-align: center; }
.brand-scope .b-bigCta .b-lbl { color: var(--b-gris500); letter-spacing: 2px; }
.brand-scope .b-bigCta h2 { font-family: var(--b-fDisplay); font-size: clamp(48px, 8vw, 120px); text-transform: uppercase; line-height: 0.95; margin: 16px 0 32px; }
.brand-scope .b-bigCta .b-em { color: var(--b-rouge); }
.brand-scope .b-bigCta-sub { max-width: 640px; margin: 0 auto 48px; font-size: 18px; color: var(--b-gris300); line-height: 1.55; }
.brand-scope .b-bigCta-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.brand-scope .b-bigCta .b-btn-light { color: var(--b-creme); border-color: var(--b-creme); }
.brand-scope .b-bigCta .b-btn-light:hover { background: var(--b-creme); color: var(--b-noir); }

@media (max-width: 900px) {
  .brand-scope .b-hero { padding: 60px 0 70px; }
  .brand-scope .b-hero-sub { grid-template-columns: 1fr; gap: 26px; }
  .brand-scope .b-marquee-item { font-size: 30px; }
  .brand-scope .b-secHead { flex-direction: column; align-items: flex-start; gap: 20px; }
  .brand-scope .b-secHead .b-lblRight { text-align: left; }
  .brand-scope .b-manifeste-grid, .brand-scope .b-statsGrid { grid-template-columns: 1fr; }
  .brand-scope .b-prodRow { grid-template-columns: 1fr; min-height: 0; }
  .brand-scope .b-prodReverse .b-prodVisual { order: 1; }
  .brand-scope .b-prodReverse .b-prodContent { order: 2; border-left: none; }
  .brand-scope .b-prodContent { border-left: none; padding: 40px 22px; }
  .brand-scope .b-prodVisual { padding: 34px 20px; }
  .brand-scope .b-prodNameBig { font-size: 42px; }
  .brand-scope .b-magGrid { grid-template-columns: 1fr; }
  .brand-scope .b-magFeatured { grid-row: auto; }
  .brand-scope .b-statV { font-size: 66px; }
}
