/* =====================================================
   CCOD Caméléon — style.css
   Feuille de styles partagée par toutes les pages
   ===================================================== */

/* =====================================================
   VARIABLES & RESET
   ===================================================== */
:root {
  --navy:   #0b1b2e;
  --navy2:  #162840;
  --navy3:  #1e3554;
  --gold:   #c9a84c;
  --glt:    #dfc07a;
  --gpale:  #f5ecd4;
  --wh:     #f8f9fc;
  --gris:   #eef1f6;
  --D: 'Cormorant Garamond', Georgia, serif;
  --B: 'Jost', sans-serif;
  --shadow: 0 8px 40px rgba(11,27,46,.12);
  --radius: 0px; /* design carré = 0 */
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--B); color: #1a2535; background: var(--wh); overflow-x: hidden; }
h1, h2, h3, h4 { font-family: var(--D); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.65rem); }
p  { font-weight: 300; line-height: 1.85; color: #3a4a60; }
img { display: block; max-width: 100%; }
a  { text-decoration: none; }

/* =====================================================
   UTILITAIRES
   ===================================================== */
.ey {
  font-family: var(--B); font-size: .68rem; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 1rem;
}
.div {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--glt));
  margin: 1.4rem 0;
}
.div.c { margin: 1.4rem auto; }
.wrap { max-width: 1300px; margin: 0 auto; padding: 0 2.5rem; }
.wrap-lg { max-width: 1400px; margin: 0 auto; padding: 0 2.5rem; }
.text-center { text-align: center; }

/* =====================================================
   BOUTONS
   ===================================================== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2.2rem;
  font-family: var(--B); font-size: .72rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  border: none; cursor: pointer; transition: all .3s;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--glt));
  color: var(--navy);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,.45); }

.btn-outline {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(201,168,76,.6);
}
.btn-outline:hover { background: rgba(201,168,76,.12); border-color: var(--gold); transform: translateY(-2px); }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(11,27,46,.3); }

.btn-navy-out {
  background: transparent; color: var(--navy);
  border: 1.5px solid rgba(11,27,46,.3);
}
.btn-navy-out:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

.btn-outline-gold {
  background: transparent; color: var(--gold);
  border: 1.5px solid rgba(201,168,76,.5);
}
.btn-outline-gold:hover { background: rgba(201,168,76,.1); transform: translateY(-2px); }

/* =====================================================
   ANIMATION REVEAL AU SCROLL
   ===================================================== */
.rv { opacity: 0; transform: translateY(28px); transition: opacity .75s, transform .75s; }
.rv.in { opacity: 1; transform: none; }

/* =====================================================
   HEADER
   ===================================================== */
#hdr { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all .4s; }
#hdr.on {
  background: rgba(11,27,46,.97); backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.nw {
  max-width: 1400px; margin: 0 auto; padding: 0 2.5rem;
  height: 80px; display: flex; align-items: center; justify-content: space-between;
}
/* Logo image */
.logo-wrap { display: flex; align-items: center; }
.logo-img { height: 48px; width: auto; display: block; }
/* Fallback texte si image absente */
.logo-name { font-family: var(--D); font-size: 1.6rem; font-weight: 500; color: #fff; letter-spacing: .02em; display: none; }
.logo-name span { color: var(--gold); }
.logo-tag { font-family: var(--B); font-size: .52rem; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: .15rem; display: none; }
/* Logo dans le footer (version plus petite) */
.footer-logo { height: 38px; width: auto; display: block; margin-bottom: 1rem; }
/* Logo dans les pages légales header fixe */
.logo-img-sm { height: 38px; width: auto; display: block; }
/* Nav */
.nl { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nl a { font-size: .7rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.8); transition: color .25s; position: relative; }
.nl a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .3s; }
.nl a:hover { color: #fff; }
.nl a:hover::after { width: 100%; }
/* Dropdown */
.hd { position: relative; }
.dd {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--navy); border: 1px solid rgba(201,168,76,.2);
  min-width: 260px; padding: .8rem 0;
  opacity: 0; pointer-events: none; transition: all .25s;
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
/* Pont invisible souris */
.hd::after { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 8px; }
.hd:hover .dd { opacity: 1; pointer-events: auto; }
.dd a { display: block; padding: .55rem 1.4rem; font-size: .67rem; letter-spacing: .12em; color: rgba(255,255,255,.75) !important; white-space: nowrap; }
.dd a::after { display: none !important; }
.dd a:hover { color: var(--gold) !important; background: rgba(255,255,255,.04); }
/* Burger */
.bur { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .5rem; background: none; border: none; }
.bur span { display: block; width: 24px; height: 1.5px; background: #fff; }
/* Menu mobile */
.mob { display: none; position: fixed; inset: 0; background: var(--navy); z-index: 999; padding: 6rem 2rem 2rem; overflow-y: auto; flex-direction: column; gap: .8rem; }
.mob.open { display: flex; }
.mob a { font-size: .85rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.8); padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.mob a.sub { padding-left: 1rem; font-size: .78rem; color: rgba(255,255,255,.55); }
.mx { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: #fff; font-size: 1.8rem; cursor: pointer; }

/* =====================================================
   PAGE HERO (pages intérieures)
   ===================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, var(--navy3) 100%);
  padding: 9rem 0 5rem; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.08), transparent 70%);
}
.page-hero::after {
  content: ''; position: absolute; bottom: -150px; left: -150px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.05), transparent 70%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; }
.page-hero .ph-sub { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,.62); max-width: 600px; margin: 1.2rem auto 0; line-height: 1.85; }
.page-hero .ph-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }
/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: .5rem; justify-content: center; margin-bottom: 1.5rem; flex-wrap: wrap; }
.breadcrumb a { font-size: .68rem; font-weight: 400; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.45); transition: color .25s; }
.breadcrumb a:hover { color: var(--glt); }
.breadcrumb span { font-size: .68rem; color: rgba(255,255,255,.25); }
.breadcrumb .current { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); }

/* =====================================================
   SECTIONS ALTERNÉES — système .split
   .txt-left : texte gauche | image droite
   .img-left : image gauche | texte droite
   ===================================================== */
.split { padding: 6rem 0; }
.split-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.txt-left .split-txt { order: 1; } .txt-left .split-img { order: 2; }
.img-left .split-img { order: 1; } .img-left .split-txt { order: 2; }

.split-img { position: relative; }
.split-img::before {
  content: ''; position: absolute; top: -18px; left: -18px;
  width: 180px; height: 180px;
  border-top: 2px solid var(--gold); border-left: 2px solid var(--gold);
  z-index: 1; pointer-events: none;
}
.split-img::after {
  content: ''; position: absolute; bottom: -18px; right: -18px;
  width: 180px; height: 180px;
  border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold);
  pointer-events: none;
}
.split-img img { width: 100%; height: 500px; object-fit: cover; display: block; }
.sticker {
  position: absolute; bottom: 2rem; left: -2.5rem;
  background: var(--navy); color: #fff;
  padding: 1.2rem 1.8rem; z-index: 2;
  box-shadow: 0 12px 40px rgba(11,27,46,.4);
}
.sticker strong { font-family: var(--D); font-size: 1.9rem; font-weight: 300; color: var(--gold); display: block; }
.sticker span { font-size: .62rem; font-weight: 400; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.55); }

.split-txt h2 { color: var(--navy); margin-bottom: .4rem; }
.split-txt p { margin-top: 1.1rem; }
.split-txt ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; margin-top: 1.5rem; }
.split-txt ul li { display: flex; align-items: flex-start; gap: .75rem; font-size: .85rem; font-weight: 300; color: #3a4a60; line-height: 1.6; }
.split-txt ul li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: .48rem; }

/* Features grid (icônes SVG) */
.fts { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }
.ft { display: flex; gap: .8rem; align-items: flex-start; padding: .85rem; background: #f0f3f7; }
.fti { width: 36px; height: 36px; background: linear-gradient(135deg, var(--gold), var(--glt)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fti svg { width: 18px; height: 18px; fill: var(--navy); }
.ft p { font-size: .82rem; font-weight: 400; color: var(--navy); margin: 0; padding-top: .4rem; line-height: 1.5; }

/* =====================================================
   GRILLE SERVICES (cartes)
   ===================================================== */
#services, .services-section { background: var(--gris); padding: 7rem 0; }
.sh { text-align: center; margin-bottom: 4rem; }
.sh h2 { color: var(--navy); }
.sh p { max-width: 600px; margin: 1.2rem auto 0; font-size: 1rem; }
.sg { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 2px; background: rgba(201,168,76,.12); border: 2px solid rgba(201,168,76,.12); }
.sc { background: var(--wh); display: flex; flex-direction: column; overflow: hidden; position: relative; transition: all .35s; }
.sc::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--gold), var(--glt)); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.sc:hover { background: var(--navy); box-shadow: 0 20px 50px rgba(11,27,46,.25); z-index: 1; transform: translateY(-4px); }
.sc:hover::after { transform: scaleX(1); }
.sph { width: 100%; height: 180px; object-fit: cover; filter: brightness(.9); transition: filter .4s; background: var(--gold); }
.sc:hover .sph { filter: brightness(.4); }
.sb { padding: 1.8rem 2rem; flex: 1; display: flex; flex-direction: column; }
.sn { font-family: var(--D); font-size: 2.4rem; font-weight: 300; color: rgba(201,168,76,.2); line-height: 1; margin-bottom: .8rem; transition: color .35s; }
.sc h3 { color: var(--navy); font-size: 1.15rem; margin-bottom: .7rem; transition: color .35s; }
.sc:hover h3, .sc:hover .sd { color: rgba(255,255,255,.85); }
.sd { font-size: .83rem; font-weight: 300; line-height: 1.75; color: #5a6a80; flex: 1; transition: color .35s; }
.sl { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.5rem; font-size: .67rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.sa { transition: transform .3s; }
.sc:hover .sa { transform: translateX(4px); }

/* =====================================================
   SECTION WHY / ARGUMENTS (fond navy)
   ===================================================== */
.why-section { background: var(--navy2); padding: 7rem 0; overflow: hidden; }
.wg { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.wt h2 { color: #fff; }
.wt > p { color: rgba(255,255,255,.62); margin-top: 1.2rem; }
.was { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 3rem; }
.wa { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.2rem 1.6rem; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); transition: all .3s; }
.wa:hover { background: rgba(201,168,76,.08); border-color: rgba(201,168,76,.2); transform: translateX(6px); }
.wai { width: 48px; height: 48px; background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wai svg { width: 22px; height: 22px; fill: var(--gold); }
.wa h4 { font-family: var(--B); font-size: .75rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--glt); margin-bottom: .3rem; }
.wa p { font-size: .82rem; color: rgba(255,255,255,.5); margin: 0; line-height: 1.7; }
/* Image côté WHY */
.wv { position: relative; }
.wv img { width: 100%; height: 520px; object-fit: cover; filter: brightness(.6); display: block; background: var(--navy3); }
.wvo { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(201,168,76,.1), transparent 60%); }
.wq { position: absolute; bottom: 3rem; left: -2rem; right: 2rem; background: var(--navy); border-left: 3px solid var(--gold); padding: 2rem; box-shadow: 0 16px 50px rgba(0,0,0,.4); }
.wq blockquote { font-family: var(--D); font-size: 1.15rem; font-style: italic; color: rgba(255,255,255,.85); line-height: 1.6; }
.wq cite { display: block; margin-top: .8rem; font-size: .65rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); font-style: normal; }

/* =====================================================
   MÉTHODE — étapes numérotées
   ===================================================== */
.methode-section { padding: 7rem 0; background: var(--navy); }
.mh { text-align: center; margin-bottom: 4rem; }
.mh h2 { color: #fff; }
.mh p { color: rgba(255,255,255,.6); max-width: 560px; margin: 1rem auto 0; }
.mg { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.mg::before { content: ''; position: absolute; top: 2.5rem; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,168,76,.3), transparent); }
.me { text-align: center; position: relative; }
.me-num { width: 52px; height: 52px; border-radius: 50%; background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.3); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-family: var(--D); font-size: 1.4rem; color: var(--gold); }
.me h3 { color: #fff; font-size: 1.05rem; margin-bottom: .7rem; }
.me p { font-size: .83rem; color: rgba(255,255,255,.5); line-height: 1.7; }

/* =====================================================
   TÉMOIGNAGES
   ===================================================== */
.temoignages-section { padding: 7rem 0; background: var(--wh); }
.tg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; }
.tc { background: #fff; border: 1px solid rgba(201,168,76,.15); padding: 2.5rem 2rem; position: relative; transition: all .3s; box-shadow: var(--shadow); }
.tc:hover { border-color: rgba(201,168,76,.4); transform: translateY(-4px); }
.tc::before { content: '"'; font-family: var(--D); font-size: 5rem; color: rgba(201,168,76,.15); position: absolute; top: .5rem; left: 1.5rem; line-height: 1; }
.tc p { font-size: .9rem; font-weight: 300; line-height: 1.8; color: #4a5a70; position: relative; z-index: 1; }
.tc-meta { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(201,168,76,.12); }
.tc-av { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--gris); }
.tc-name { font-size: .78rem; font-weight: 500; color: var(--navy); display: block; }
.tc-role { font-size: .7rem; color: var(--gold); font-weight: 400; letter-spacing: .08em; }
.stars { color: var(--gold); font-size: .8rem; margin-bottom: .8rem; }

/* =====================================================
   FAQ — accordéon
   ===================================================== */
.faq-section { padding: 7rem 0; background: var(--gris); }
.faq-list { max-width: 800px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: .8rem; }
.faq-item { background: #fff; border: 1px solid rgba(201,168,76,.15); overflow: hidden; transition: border-color .3s; }
.faq-item.open { border-color: rgba(201,168,76,.4); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.4rem 1.8rem; background: none; border: none; cursor: pointer; text-align: left; gap: 1rem; }
.faq-q span { font-family: var(--D); font-size: 1.15rem; color: var(--navy); line-height: 1.3; }
.faq-icon { width: 28px; height: 28px; border: 1px solid rgba(201,168,76,.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .3s; }
.faq-icon svg { width: 14px; height: 14px; fill: var(--gold); transition: transform .3s; }
.faq-item.open .faq-icon { background: var(--gold); }
.faq-item.open .faq-icon svg { fill: var(--navy); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a-inner { padding: 0 1.8rem 1.6rem; font-size: .9rem; font-weight: 300; color: #4a5a70; line-height: 1.8; }
.faq-item.open .faq-a { max-height: 400px; }

/* =====================================================
   CTA CENTRAL
   ===================================================== */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 50%, #0d2137 100%);
  padding: 7rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,.07), transparent 70%); }
.cta-section::after { content: ''; position: absolute; bottom: -150px; left: -150px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,.05), transparent 70%); }
.ci { position: relative; z-index: 1; }
.ci h2 { color: #fff; max-width: 720px; margin: 0 auto 1.5rem; }
.ci p { color: rgba(255,255,255,.62); font-size: 1rem; max-width: 520px; margin: 0 auto 3rem; }
.cib { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =====================================================
   CONTACT RAPIDE (section bas de page)
   ===================================================== */
.contact-section { padding: 6rem 0; background: var(--wh); }
.cqh { text-align: center; margin-bottom: 3.5rem; }
.cqh h2 { color: var(--navy); }
.cqg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(11,27,46,.08); }
.cqb { background: var(--wh); padding: 3rem 2.5rem; text-align: center; border-bottom: 3px solid transparent; transition: border-color .3s; }
.cqb:hover { border-color: var(--gold); }
.cqbi { width: 60px; height: 60px; background: linear-gradient(135deg, var(--gold), var(--glt)); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.cqbi svg { width: 28px; height: 28px; fill: var(--navy); }
.cqb h4 { font-family: var(--B); font-size: .68rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .8rem; }
.cqb a, .cqb p { font-size: .95rem; font-weight: 300; color: var(--navy); margin: 0; line-height: 1.7; }
.cqb a:hover { color: var(--gold); }

/* =====================================================
   GALERIE PHOTOS
   ===================================================== */
.gallery-section { padding: 0; overflow: hidden; }
.gg { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 300px 300px; gap: 3px; background: var(--navy); }
.gi { overflow: hidden; position: relative; background: var(--navy2); }
.gi img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s, filter .6s; filter: brightness(.72) saturate(.9); display: block; }
.gi:hover img { transform: scale(1.06); filter: brightness(.85) saturate(1.1); }
.gi:first-child { grid-row: span 2; }
.gl { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem 1.2rem; background: linear-gradient(transparent, rgba(11,27,46,.85)); font-size: .62rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.75); opacity: 0; transition: opacity .3s; }
.gi:hover .gl { opacity: 1; }

/* =====================================================
   FOOTER
   ===================================================== */
footer { background: var(--navy); padding: 4rem 0 2rem; }
.fl { height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin-bottom: 3rem; }
.ftop { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.fb p { font-size: .82rem; line-height: 1.85; color: rgba(255,255,255,.5); margin-top: 1rem; }
.fc h5 { font-family: var(--B); font-size: .65rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.fc ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.fc a { font-size: .78rem; color: rgba(255,255,255,.5); transition: color .25s; }
.fc a:hover { color: var(--glt); }
.fb2 { border-top: 1px solid rgba(255,255,255,.07); padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.fb2 p { font-size: .72rem; color: rgba(255,255,255,.35); margin: 0; }
.fb2-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.fb2-links a { font-size: .72rem; color: rgba(255,255,255,.35); transition: color .25s; }
.fb2-links a:hover { color: var(--glt); }

/* =====================================================
   POPUP PROPAGANDE
   ===================================================== */
#popup-promo { position: fixed; inset: 0; z-index: 9000; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
#popup-promo.show { display: flex; }
.pp-overlay { position: absolute; inset: 0; background: rgba(11,27,46,.75); backdrop-filter: blur(6px); }
.pp-box { position: relative; background: var(--navy); border: 1px solid rgba(201,168,76,.25); max-width: 560px; width: 100%; padding: 3.5rem 3rem; box-shadow: 0 30px 80px rgba(0,0,0,.5); animation: ppIn .5s cubic-bezier(.34,1.56,.64,1); }
.pp-deco { position: absolute; top: -2px; left: 3rem; right: 3rem; height: 3px; background: linear-gradient(90deg, var(--gold), var(--glt), var(--gold)); }
.pp-close { position: absolute; top: 1.2rem; right: 1.4rem; background: none; border: none; color: rgba(255,255,255,.4); font-size: 1.4rem; cursor: pointer; transition: color .2s; line-height: 1; }
.pp-close:hover { color: #fff; }
.pp-eyelet { font-family: var(--B); font-size: .62rem; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; display: block; }
.pp-box h2 { font-family: var(--D); font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff; margin-bottom: 1rem; line-height: 1.2; }
.pp-box h2 em { color: var(--glt); font-style: italic; }
.pp-box p { font-size: .9rem; font-weight: 300; color: rgba(255,255,255,.65); line-height: 1.8; margin-bottom: 2rem; }
.pp-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.pp-later { font-size: .7rem; color: rgba(255,255,255,.3); cursor: pointer; margin-top: 1rem; display: block; text-align: center; letter-spacing: .1em; text-transform: uppercase; transition: color .2s; }
.pp-later:hover { color: rgba(255,255,255,.6); }

/* =====================================================
   BANNIÈRE COOKIES
   ===================================================== */
#cookie-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 8000; background: rgba(11,27,46,.97); border-top: 1px solid rgba(201,168,76,.2); backdrop-filter: blur(12px); padding: 1.2rem 2.5rem; display: none; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
#cookie-bar.show { display: flex; }
.ck-txt { font-size: .8rem; font-weight: 300; color: rgba(255,255,255,.7); max-width: 700px; line-height: 1.7; }
.ck-txt a { color: var(--gold); text-decoration: underline; }
.ck-btns { display: flex; gap: .7rem; flex-shrink: 0; flex-wrap: wrap; }
.ck-btn { font-family: var(--B); font-size: .68rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; padding: .6rem 1.4rem; border: none; cursor: pointer; transition: all .25s; }
.ck-accept { background: linear-gradient(135deg, var(--gold), var(--glt)); color: var(--navy); }
.ck-accept:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,168,76,.4); }
.ck-refuse { background: transparent; color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.15); }
.ck-refuse:hover { border-color: rgba(255,255,255,.4); color: #fff; }
.ck-custom { background: transparent; color: rgba(255,255,255,.45); border: 1px solid rgba(255,255,255,.1); font-size: .65rem; }
.ck-custom:hover { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.3); }

/* =====================================================
   ANIMATIONS GLOBALES
   ===================================================== */
@keyframes fu   { from { opacity:0; transform:translateY(30px) } to { opacity:1; transform:none } }
@keyframes ppIn { from { opacity:0; transform:scale(.9) translateY(20px) } to { opacity:1; transform:scale(1) translateY(0) } }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .split-inner, .wg { grid-template-columns: 1fr; gap: 3rem; }
  .txt-left .split-txt, .txt-left .split-img,
  .img-left .split-img, .img-left .split-txt { order: unset; }
  .split-img::before, .split-img::after { display: none; }
  .sticker { left: 0; bottom: 1rem; }
  .wq { left: 0; right: 0; bottom: 1rem; }
  .mg { grid-template-columns: 1fr 1fr; }
  .tg { grid-template-columns: 1fr 1fr; }
  .ftop { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nl, .nvcta { display: none; }
  .bur { display: flex; }
  .sg { grid-template-columns: 1fr; }
  .gg { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gi:first-child { grid-row: span 1; } .gi { height: 220px; }
  .cqg { grid-template-columns: 1fr; }
  .ftop { grid-template-columns: 1fr; gap: 2rem; }
  .fb2 { flex-direction: column; text-align: center; }
  .fb2-links { justify-content: center; }
  .fts { grid-template-columns: 1fr; }
  .mg { grid-template-columns: 1fr; }
  .tg { grid-template-columns: 1fr; }
  .cib { flex-direction: column; align-items: center; }
  .pp-box { padding: 2.5rem 1.8rem; }
  #cookie-bar { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .ph-btns { flex-direction: column; align-items: center; }
}
