/* ═══════════════════════════════════════════════════════
   DLH GROUPE — DESIGN SYSTEM V2
   Premium Institutional — Encre + Or + Ivoire
   Cormorant Garamond + Outfit
   ═══════════════════════════════════════════════════════ */

/* ── RESET ────────────────────────────────────────── */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}
button{cursor:pointer;border:none;background:none;font-family:inherit}
input,textarea,select{font-family:inherit;font-size:16px}

body{
  font-family:'Outfit',sans-serif;
  font-size:var(--text-base);
  line-height:1.7;
  color:var(--ink);
  background:var(--bg);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* ── VARIABLES ────────────────────────────────────── */
:root{
  /* Couleurs */
  --ink:#141927;
  --ink-light:#1e2438;
  --ink-rgb:20,25,39;
  --gold:#b8860b;
  --gold-light:#d4a74a;
  --gold-pale:#f5ecd7;
  --gold-rgb:184,134,11;
  --ivory:#faf8f4;
  --cream:#f3f0ea;
  --bg:#ffffff;
  --bg-alt:#faf9f7;
  --text:#3a3a3a;
  --text-muted:#7a7a7a;
  --border:#eae7e1;
  --border-light:#f2f0ec;

  /* Filiales — couleurs officielles des logos SVG */
  --celeste:#e67e00;
  --sp:#E20613;
  --synapse:#7c3aed;
  --pubxl:#F18D00;
  --apostrophe:#B5CB22;

  /* Typo fluide */
  --text-display:clamp(3rem,8vw,6.5rem);
  --text-hero:clamp(2.5rem,6.5vw,5rem);
  --text-h2:clamp(1.8rem,4.5vw,3.25rem);
  --text-h3:clamp(1.4rem,3vw,2rem);
  --text-h4:clamp(1.15rem,2.2vw,1.45rem);
  --text-lg:clamp(1.05rem,2vw,1.25rem);
  --text-base:clamp(0.94rem,1.8vw,1.0625rem);
  --text-sm:clamp(0.8rem,1.4vw,0.875rem);
  --text-xs:clamp(0.7rem,1.1vw,0.78rem);

  /* Espacement */
  --s-xs:0.5rem;--s-sm:1rem;--s-md:1.5rem;--s-lg:3rem;
  --s-xl:5rem;--s-2xl:7rem;--s-3xl:10rem;

  /* Effets */
  --radius:8px;
  --radius-lg:16px;
  --radius-xl:24px;
  --shadow-soft:0 2px 8px rgba(0,0,0,0.04);
  --shadow-md:0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg:0 20px 60px rgba(0,0,0,0.12);
  --shadow-gold:0 8px 30px rgba(var(--gold-rgb),0.18);
  --ease:cubic-bezier(.4,0,.2,1);
  --dur:0.35s;
}

/* ── TYPO ─────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6{
  font-family:'Cormorant Garamond',serif;
  font-weight:600;line-height:1.15;color:var(--ink);
}
h1{font-size:var(--text-hero)}
h2{font-size:var(--text-h2)}
h3{font-size:var(--text-h3)}
h4{font-size:var(--text-h4)}

p{color:var(--text);line-height:1.75}

.label{
  font-family:'Outfit',sans-serif;
  font-size:var(--text-xs);font-weight:600;
  letter-spacing:.2em;text-transform:uppercase;
  color:var(--gold);display:inline-flex;align-items:center;gap:.6rem;
}
.label::before{content:'';width:28px;height:1px;background:var(--gold)}

.subtitle{
  font-size:var(--text-lg);color:var(--text-muted);
  max-width:580px;line-height:1.65;font-weight:300;
}

.gold-rule{
  width:50px;height:2px;border:none;
  background:linear-gradient(90deg,var(--gold),var(--gold-light));
}
.gold-rule--c{margin-inline:auto}

/* ── LAYOUT ───────────────────────────────────────── */
.container{width:100%;max-width:1200px;margin:0 auto;padding:0 1.25rem}
.container--lg{max-width:1360px}
.container--sm{max-width:780px}

.section{padding:3.5rem 0}
@media(min-width:768px){.section{padding:5rem 0}}
@media(min-width:1024px){.section{padding:6.5rem 0}}

.section--dark{background:var(--ink);color:#fff}
.section--dark h2,.section--dark h3,.section--dark h4{color:#fff}
.section--dark p{color:rgba(255,255,255,.65)}
.section--dark .label{color:var(--gold-light)}
.section--dark .subtitle{color:rgba(255,255,255,.5)}

.section--alt{background:var(--bg-alt)}
.section--cream{background:var(--cream)}

.text-center{text-align:center}
.mx-auto{margin-inline:auto}

.grid{display:grid;grid-template-columns:1fr;gap:1.5rem}

/* ── BOUTONS ──────────────────────────────────────── */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  min-height:52px;padding:0 2.25rem;
  font-family:'Outfit',sans-serif;font-size:var(--text-sm);font-weight:500;
  letter-spacing:.06em;text-transform:uppercase;
  border:2px solid transparent;border-radius:var(--radius);
  transition:all var(--dur) var(--ease);position:relative;overflow:hidden;
}
.btn svg{width:16px;height:16px;transition:transform var(--dur) var(--ease)}
.btn:hover svg{transform:translateX(4px)}

.btn--gold{
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  color:#fff;border-color:var(--gold);
}
.btn--gold:hover{
  box-shadow:var(--shadow-gold);transform:translateY(-3px);
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
}

.btn--outline{
  background:transparent;color:#fff;border-color:rgba(255,255,255,.25);
}
.btn--outline:hover{border-color:var(--gold);color:var(--gold);transform:translateY(-3px)}

.btn--outline-dark{
  background:transparent;color:var(--ink);border-color:var(--border);
}
.btn--outline-dark:hover{border-color:var(--gold);color:var(--gold);transform:translateY(-3px)}

.btn--dark{background:var(--ink);color:#fff;border-color:var(--ink)}
.btn--dark:hover{background:var(--ink-light);transform:translateY(-3px);box-shadow:var(--shadow-md)}

/* ── NAVIGATION ───────────────────────────────────── */
.site-nav{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  padding:1.5rem 0;transition:all var(--dur) var(--ease);
}
.site-nav.scrolled{
  background:rgba(var(--ink-rgb),.95);
  backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  padding:.6rem 0;box-shadow:0 4px 30px rgba(0,0,0,.15);
}
.nav-inner{display:flex;align-items:center;justify-content:space-between}

.nav-logo img{height:52px;width:auto;transition:height var(--dur) var(--ease)}
.site-nav.scrolled .nav-logo img{height:40px}

.burger{
  display:flex;flex-direction:column;justify-content:center;
  gap:5px;min-width:48px;min-height:48px;padding:10px;z-index:1001;
}
.burger span{
  display:block;width:22px;height:2px;background:#fff;
  border-radius:2px;transition:all var(--dur) var(--ease);transform-origin:center;
}
.burger.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger.active span:nth-child(2){opacity:0;transform:scaleX(0)}
.burger.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.nav-menu{
  display:none;position:absolute;top:100%;left:0;right:0;
  background:var(--ink);padding:2rem 0;
  box-shadow:0 16px 48px rgba(0,0,0,.3);
}
.nav-menu.open{display:flex;flex-direction:column;align-items:center}
.nav-menu a{
  font-size:var(--text-base);color:rgba(255,255,255,.75);
  padding:.85rem 1.5rem;width:100%;text-align:center;
  transition:color var(--dur) var(--ease);display:block;
}
.nav-menu a:hover,.nav-menu a.active{color:var(--gold)}
.nav-cta{margin-top:.75rem;padding:0 1.5rem;width:100%}
.nav-cta .btn{width:100%}

@media(min-width:1024px){
  .nav-menu{
    display:flex;flex-direction:row;position:static;
    background:transparent;padding:0;box-shadow:none;align-items:center;gap:0;
  }
  .nav-menu a{
    padding:.5rem 1.1rem;width:auto;font-size:var(--text-sm);
    position:relative;
  }
  .nav-menu a::after{
    content:'';position:absolute;bottom:0;left:1.1rem;right:1.1rem;
    height:2px;background:var(--gold);transform:scaleX(0);
    transform-origin:right;transition:transform var(--dur) var(--ease);
  }
  .nav-menu a:hover::after,.nav-menu a.active::after{transform:scaleX(1);transform-origin:left}
  .nav-cta{margin:0;padding:0;width:auto;margin-left:.75rem}
  .nav-cta .btn{width:auto}
  .burger{display:none}
}

/* ═══════════════════════════════════════════════════
   HERO — IMMERSIF PLEIN ÉCRAN
   ═══════════════════════════════════════════════════ */
.hero{
  position:relative;min-height:100vh;display:flex;align-items:center;
  background:var(--ink);overflow:hidden;
}

/* Grille lumineuse subtile */
.hero::before{
  content:'';position:absolute;inset:0;z-index:0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
  background-size:60px 60px;
}

/* Lueur dorée */
.hero::after{
  content:'';position:absolute;z-index:0;
  width:800px;height:800px;border-radius:50%;
  background:radial-gradient(circle,rgba(var(--gold-rgb),.08) 0%,transparent 70%);
  top:-200px;right:-200px;
  animation:glow 8s ease-in-out infinite alternate;
}
@keyframes glow{
  0%{transform:translate(0,0);opacity:.6}
  100%{transform:translate(-80px,80px);opacity:1}
}

.hero .container{position:relative;z-index:2}

.hero-inner{
  display:grid;grid-template-columns:1fr;gap:2rem;
  align-items:center;padding:7rem 0 4rem;
}

.hero-content{max-width:620px}

.hero h1{color:#fff;margin-bottom:var(--s-md);font-weight:700;letter-spacing:-.02em}
.hero h1 em{
  font-style:normal;color:var(--gold-light);
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;
}

.hero-text{
  font-size:var(--text-lg);color:rgba(255,255,255,.6);
  margin-bottom:var(--s-lg);max-width:500px;line-height:1.75;
}

.hero-buttons{display:flex;flex-wrap:wrap;gap:var(--s-sm)}

/* Mosaïque d'images hero — visible desktop */
.hero-mosaic{display:none}

.hero-mosaic-grid{
  display:grid;grid-template-columns:1fr 1fr;grid-template-rows:1fr 1fr;
  gap:.75rem;max-width:480px;margin-left:auto;
}
.hero-mosaic-item{
  border-radius:var(--radius-lg);overflow:hidden;
  position:relative;aspect-ratio:4/3;
}
.hero-mosaic-item img{
  width:100%;height:100%;object-fit:cover;
  transition:transform 6s var(--ease);
}
.hero-mosaic-item:hover img{transform:scale(1.08)}
.hero-mosaic-item::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 40%,rgba(var(--ink-rgb),.7));
}
.hero-mosaic-item.tall{grid-row:span 2;aspect-ratio:auto}
.hero-mosaic-caption{
  position:absolute;bottom:.75rem;left:.75rem;z-index:2;
  font-size:var(--text-xs);font-weight:500;color:var(--gold-light);
  letter-spacing:.05em;text-transform:uppercase;
}

/* Scroll hint */
.hero-scroll{
  position:absolute;bottom:2.5rem;left:50%;transform:translateX(-50%);z-index:2;
  display:flex;flex-direction:column;align-items:center;gap:.5rem;
}
.hero-scroll-dot{
  width:6px;height:6px;border-radius:50%;background:var(--gold);
  animation:bounce 2s ease-in-out infinite;
}
.hero-scroll-line{width:1px;height:36px;background:linear-gradient(180deg,rgba(var(--gold-rgb),.5),transparent)}
@keyframes bounce{0%,100%{transform:translateY(0);opacity:1}50%{transform:translateY(12px);opacity:.3}}

@media(min-width:1024px){
  .hero-inner{grid-template-columns:1fr 1fr;gap:4rem;padding:0;min-height:100vh}
  .hero-mosaic{display:block}
}

/* ═══════════════════════════════════════════════════
   PAGE HERO (sous-pages)
   ═══════════════════════════════════════════════════ */
.page-hero{
  position:relative;padding:9rem 0 3.5rem;background:var(--ink);overflow:hidden;
}
.page-hero::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse at 20% 80%,rgba(var(--gold-rgb),.06) 0%,transparent 60%);
}
.page-hero .container{position:relative;z-index:2}
.page-hero h1{color:#fff;margin-bottom:var(--s-xs)}
.page-hero .hero-text{color:rgba(255,255,255,.55);margin-bottom:0}

.breadcrumb{
  font-size:var(--text-xs);color:rgba(255,255,255,.35);
  margin-bottom:var(--s-md);display:flex;align-items:center;gap:.5rem;
}
.breadcrumb a{color:rgba(255,255,255,.45)}
.breadcrumb a:hover{color:var(--gold)}

@media(min-width:768px){.page-hero{padding:12rem 0 4.5rem}}
@media(min-width:1024px){.page-hero{padding:14rem 0 5.5rem}}

/* ═══════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════ */
.stats-bar{
  background:var(--ink-light);
  border-top:1px solid rgba(255,255,255,.04);
  padding:3rem 0;position:relative;
}
.stats-bar::before{
  content:'';position:absolute;bottom:0;left:0;right:0;height:1px;
  background:linear-gradient(90deg,transparent,rgba(var(--gold-rgb),.3),transparent);
}
.stats-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem}
.stat-item{text-align:center;padding:.75rem}
.stat-number{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.5rem,6vw,4.5rem);font-weight:700;
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;line-height:1;
}
.stat-label{font-size:var(--text-sm);color:rgba(255,255,255,.45);font-weight:300;margin-top:.25rem}

@media(min-width:768px){.stats-grid{grid-template-columns:repeat(4,1fr)}}

/* ═══════════════════════════════════════════════════
   IMAGE SHOWCASE / BANDEAU
   ═══════════════════════════════════════════════════ */
.image-band{
  display:grid;grid-template-columns:repeat(3,1fr);gap:0;
  overflow:hidden;
}
.image-band-item{
  aspect-ratio:16/9;overflow:hidden;position:relative;
}
.image-band-item img{
  width:100%;height:100%;object-fit:cover;
  transition:transform 5s var(--ease);
}
.image-band-item:hover img{transform:scale(1.06)}
.image-band-item::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 50%,rgba(var(--ink-rgb),.6));
  transition:opacity var(--dur) var(--ease);
}
.image-band-item:hover::after{opacity:.3}

@media(max-width:767px){
  .image-band{grid-template-columns:1fr 1fr}
  .image-band-item:nth-child(n+3){display:none}
}

/* ═══════════════════════════════════════════════════
   FILIALES CARDS — Style premium
   ═══════════════════════════════════════════════════ */
.filiale-card{
  background:var(--bg);border:1px solid var(--border-light);
  border-radius:var(--radius-xl);overflow:hidden;
  transition:all .5s var(--ease);position:relative;
}
.filiale-card:hover{
  transform:translateY(-10px);
  box-shadow:0 24px 64px rgba(0,0,0,.10);
  border-color:transparent;
}

.filiale-card-img{
  aspect-ratio:16/10;overflow:hidden;position:relative;
}
.filiale-card-img img{
  width:100%;height:100%;object-fit:cover;
  transition:transform 4s var(--ease);
}
.filiale-card:hover .filiale-card-img img{transform:scale(1.06)}
.filiale-card-img::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 40%,rgba(var(--ink-rgb),.5));
}

.filiale-card-logo-wrap{
  position:absolute;bottom:1rem;left:1.25rem;z-index:2;
  background:rgba(255,255,255,.95);backdrop-filter:blur(8px);
  padding:.5rem .85rem;border-radius:var(--radius);
  display:flex;align-items:center;
  box-shadow:0 2px 12px rgba(0,0,0,.1);
}
.filiale-card-logo-wrap img,
.filiale-card-logo-wrap svg{
  height:28px;width:auto;max-width:120px;
  object-fit:contain;display:block;
}

.filiale-card-body{padding:1.5rem 1.5rem 1.75rem}
.filiale-card h3{
  font-family:'Outfit',sans-serif;font-size:var(--text-h4);
  font-weight:600;margin-bottom:.5rem;
}
.filiale-card p{color:var(--text-muted);margin-bottom:1.25rem;line-height:1.7;font-size:var(--text-sm)}

.filiale-tags{display:flex;flex-wrap:wrap;gap:.4rem;margin-bottom:1.25rem}
.filiale-tag{
  font-size:var(--text-xs);padding:.2rem .65rem;
  border-radius:99px;background:var(--cream);color:var(--text-muted);font-weight:500;
}

.filiale-link{
  display:inline-flex;align-items:center;gap:.4rem;
  font-size:var(--text-sm);font-weight:500;color:var(--ink);
  transition:all var(--dur) var(--ease);
}
.filiale-link:hover{color:var(--gold);gap:.65rem}
.filiale-link svg{width:14px;height:14px}

/* ═══════════════════════════════════════════════════
   FILIALE DETAIL SECTION (entreprises.html)
   ═══════════════════════════════════════════════════ */
.filiale-section{padding:4rem 0;border-bottom:1px solid var(--border-light)}
.filiale-section:nth-child(even){background:var(--bg-alt)}
.filiale-section:last-of-type{border-bottom:none}

.filiale-header{display:flex;align-items:center;gap:1.25rem;margin-bottom:2rem;flex-wrap:wrap}

.filiale-logo-box{
  background:#fff;border:1px solid var(--border);
  padding:.6rem 1rem;border-radius:var(--radius);
  display:flex;align-items:center;
  box-shadow:var(--shadow-soft);
}
.filiale-logo-box img,.filiale-logo-box svg{
  height:36px;width:auto;max-width:160px;object-fit:contain;
}
.filiale-logo-box--bg{padding:.6rem 1rem}

.filiale-badge{
  font-size:var(--text-xs);font-weight:600;letter-spacing:.08em;
  text-transform:uppercase;padding:.3rem .85rem;border-radius:99px;border:1.5px solid;
}

.filiale-content-grid{display:grid;grid-template-columns:1fr;gap:2rem;align-items:start}

.filiale-description h3{margin-bottom:.75rem}
.filiale-description p{color:var(--text-muted);margin-bottom:.85rem;line-height:1.8}

.filiale-services{display:grid;grid-template-columns:1fr;gap:.6rem;margin-top:1.25rem}
.filiale-service{
  display:flex;align-items:center;gap:.65rem;
  padding:.65rem .85rem;background:var(--bg);
  border:1px solid var(--border-light);border-radius:var(--radius);
  transition:border-color var(--dur) var(--ease);
}
.filiale-service:hover{border-color:var(--gold-pale)}
.filiale-service svg{width:18px;height:18px;flex-shrink:0;color:var(--gold)}
.filiale-service span{font-size:var(--text-sm)}

.filiale-img{border-radius:var(--radius-xl);overflow:hidden;position:relative}
.filiale-img img{width:100%;height:100%;object-fit:cover;aspect-ratio:4/3}
.filiale-img::after{
  content:'';position:absolute;inset:0;
  border-radius:var(--radius-xl);
  box-shadow:inset 0 0 0 1px rgba(0,0,0,.06);
  pointer-events:none;
}

.filiale-cta{margin-top:1.75rem;display:flex;flex-wrap:wrap;gap:.75rem}

@media(min-width:768px){
  .filiale-content-grid{grid-template-columns:1.2fr 1fr;gap:3rem}
  .filiale-services{grid-template-columns:repeat(2,1fr)}
}

/* ═══════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════ */
.about-grid{display:grid;grid-template-columns:1fr;gap:2.5rem;align-items:center}
@media(min-width:768px){.about-grid{grid-template-columns:1fr 1.4fr;gap:3.5rem}}

.about-portrait{
  position:relative;border-radius:var(--radius-xl);overflow:hidden;
  aspect-ratio:3/4;max-height:520px;
}
.about-portrait img{width:100%;height:100%;object-fit:cover}
.about-portrait::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 50%,rgba(var(--ink-rgb),.65));
}
.about-portrait-info{
  position:absolute;bottom:1.25rem;left:1.25rem;z-index:2;color:#fff;
}
.about-portrait-info h4{
  font-family:'Outfit',sans-serif;font-size:var(--text-lg);font-weight:600;color:#fff;
}
.about-portrait-info span{font-size:var(--text-sm);color:var(--gold-light)}

/* Decorative frame */
.about-portrait-frame{position:relative}
.about-portrait-frame::before{
  content:'';position:absolute;top:-12px;left:-12px;
  width:100%;height:100%;border:2px solid var(--gold);
  border-radius:var(--radius-xl);opacity:.2;z-index:-1;
}

/* Timeline */
.timeline{position:relative;padding-left:2.5rem}
.timeline::before{
  content:'';position:absolute;left:5px;top:0;bottom:0;width:2px;
  background:linear-gradient(180deg,var(--gold),var(--border));
}
.timeline-item{position:relative;padding-bottom:2.5rem}
.timeline-item:last-child{padding-bottom:0}
.timeline-item::before{
  content:'';position:absolute;left:-2.5rem;top:.15rem;
  width:12px;height:12px;border-radius:50%;
  background:var(--gold);border:3px solid var(--bg);
  box-shadow:0 0 0 2px var(--gold);z-index:1;
}
.timeline-year{
  font-family:'Cormorant Garamond',serif;font-size:var(--text-h4);
  font-weight:700;color:var(--gold);
}
.timeline-title{font-family:'Outfit',sans-serif;font-size:var(--text-base);font-weight:600;color:var(--ink)}
.timeline-desc{font-size:var(--text-sm);color:var(--text-muted);line-height:1.6}

/* Values */
.value-card{
  background:var(--bg);border:1px solid var(--border-light);
  border-radius:var(--radius-lg);padding:2rem;text-align:center;
  transition:all .4s var(--ease);
}
.value-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);border-color:var(--gold-pale)}
.value-icon{
  width:56px;height:56px;margin:0 auto var(--s-sm);
  display:flex;align-items:center;justify-content:center;
  border-radius:var(--radius);background:var(--gold-pale);color:var(--gold);
}
.value-icon svg{width:26px;height:26px}
.value-card h3{font-family:'Outfit',sans-serif;font-size:var(--text-h4);font-weight:600;margin-bottom:.4rem}
.value-card p{font-size:var(--text-sm);color:var(--text-muted)}

/* ═══════════════════════════════════════════════════
   REASSURANCE
   ═══════════════════════════════════════════════════ */
.reassurance-item{
  display:flex;align-items:flex-start;gap:1rem;
  padding:1.5rem;background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);border-radius:var(--radius-lg);
  transition:all var(--dur) var(--ease);
}
.reassurance-item:hover{background:rgba(255,255,255,.06);border-color:rgba(var(--gold-rgb),.2)}
.reassurance-icon{
  flex-shrink:0;width:48px;height:48px;display:flex;align-items:center;justify-content:center;
  border-radius:var(--radius);background:rgba(var(--gold-rgb),.1);color:var(--gold-light);
}
.reassurance-icon svg{width:22px;height:22px}
.reassurance-item h4{color:#fff;font-family:'Outfit',sans-serif;font-weight:600;margin-bottom:.2rem;font-size:var(--text-base)}
.reassurance-item p{font-size:var(--text-sm);color:rgba(255,255,255,.45);line-height:1.6}

/* ═══════════════════════════════════════════════════
   CERTIFICATIONS
   ═══════════════════════════════════════════════════ */
.certif-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:2rem;padding:1rem 0}
.certif-item{display:flex;flex-direction:column;align-items:center;gap:.5rem}
.certif-badge{
  width:80px;height:80px;display:flex;align-items:center;justify-content:center;
  border-radius:50%;
  background:linear-gradient(135deg,rgba(var(--gold-rgb),.1),rgba(var(--gold-rgb),.05));
  border:2px solid var(--gold);color:var(--gold);
  font-family:'Outfit',sans-serif;font-size:var(--text-xs);
  font-weight:700;text-align:center;line-height:1.2;
}
.certif-label{font-size:var(--text-xs);color:var(--text-muted);text-align:center;max-width:100px}

/* ═══════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════ */
.cta-section{
  position:relative;padding:5rem 0;background:var(--ink);overflow:hidden;
}
.cta-section::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(ellipse at 50% 50%,rgba(var(--gold-rgb),.07) 0%,transparent 60%),
    radial-gradient(ellipse at 80% 20%,rgba(var(--gold-rgb),.04) 0%,transparent 40%);
}
.cta-section .container{position:relative;z-index:2}
.cta-content{text-align:center;max-width:640px;margin:0 auto}
.cta-content h2{color:#fff;margin-bottom:var(--s-sm)}
.cta-content p{color:rgba(255,255,255,.5);font-size:var(--text-lg);margin-bottom:var(--s-md)}
.cta-buttons{display:flex;flex-wrap:wrap;justify-content:center;gap:var(--s-sm)}

/* ═══════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════ */
.contact-grid{display:grid;grid-template-columns:1fr;gap:2.5rem}
@media(min-width:768px){.contact-grid{grid-template-columns:1fr 1.7fr}}

.contact-card{
  background:var(--cream);border-radius:var(--radius-xl);padding:2rem;
}
.contact-info-item{
  display:flex;align-items:flex-start;gap:1rem;
  padding:1.1rem 0;border-bottom:1px solid var(--border-light);
}
.contact-info-item:last-child{border-bottom:none}
.contact-info-icon{
  flex-shrink:0;width:42px;height:42px;display:flex;align-items:center;justify-content:center;
  border-radius:var(--radius);background:var(--gold-pale);color:var(--gold);
}
.contact-info-icon svg{width:18px;height:18px}
.contact-info-item h4{font-family:'Outfit',sans-serif;font-size:var(--text-sm);font-weight:600;color:var(--ink);margin-bottom:.1rem}
.contact-info-item p,.contact-info-item a{font-size:var(--text-sm);color:var(--text-muted)}
.contact-info-item a:hover{color:var(--gold)}

.contact-form{
  background:var(--bg);border:1px solid var(--border-light);
  border-radius:var(--radius-xl);padding:2rem;
}
.form-row{display:grid;grid-template-columns:1fr;gap:1rem}
@media(min-width:600px){.form-row{grid-template-columns:1fr 1fr}}
.form-group{margin-bottom:1.1rem}
.form-group label{display:block;font-size:var(--text-sm);font-weight:500;color:var(--ink);margin-bottom:.3rem}
.form-group .required{color:var(--gold)}
.form-control{
  width:100%;min-height:48px;padding:.7rem 1rem;font-size:16px;
  color:var(--text);background:var(--bg-alt);border:1.5px solid var(--border);
  border-radius:var(--radius);outline:none;
  transition:all var(--dur) var(--ease);
}
.form-control:focus{border-color:var(--gold);box-shadow:0 0 0 3px rgba(var(--gold-rgb),.1);background:#fff}
.form-control::placeholder{color:var(--text-muted);opacity:.5}
textarea.form-control{min-height:140px;resize:vertical}

.form-note{font-size:var(--text-xs);color:var(--text-muted);margin-top:var(--s-sm);line-height:1.5}
.form-message{display:none;padding:1rem;border-radius:var(--radius);font-size:var(--text-sm);margin-top:1rem}
.form-message.success{display:block;background:rgba(16,185,129,.08);border:1px solid rgba(16,185,129,.25);color:#065f46}
.form-message.error{display:block;background:rgba(239,68,68,.08);border:1px solid rgba(239,68,68,.25);color:#991b1b}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.site-footer{background:var(--ink);padding:3.5rem 0 0;color:rgba(255,255,255,.5)}
.footer-grid{
  display:grid;grid-template-columns:1fr;gap:2rem;
  padding-bottom:3rem;border-bottom:1px solid rgba(255,255,255,.06);
}
.footer-brand p{font-size:var(--text-sm);line-height:1.7;margin-top:.85rem;max-width:300px}
.footer-brand .nav-logo img{height:48px}
.footer-col h5{
  font-family:'Outfit',sans-serif;font-size:var(--text-xs);
  font-weight:600;color:#fff;text-transform:uppercase;
  letter-spacing:.12em;margin-bottom:.85rem;
}
.footer-col a{
  font-size:var(--text-sm);color:rgba(255,255,255,.4);
  display:inline-block;padding:.15rem 0;transition:color var(--dur) var(--ease);
}
.footer-col a:hover{color:var(--gold)}
.footer-col li{margin-bottom:.35rem}

.footer-bottom{
  padding:1.5rem 0;display:flex;flex-direction:column;
  align-items:center;gap:.6rem;text-align:center;
}
.footer-bottom p{font-size:var(--text-xs);color:rgba(255,255,255,.25)}
.footer-legal{display:flex;flex-wrap:wrap;justify-content:center;gap:1rem}
.footer-legal a{font-size:var(--text-xs);color:rgba(255,255,255,.25)}
.footer-legal a:hover{color:var(--gold)}

@media(min-width:768px){
  .footer-grid{grid-template-columns:1.8fr 1fr 1fr 1fr}
  .footer-bottom{flex-direction:row;justify-content:space-between}
}

/* ═══════════════════════════════════════════════════
   LEGAL
   ═══════════════════════════════════════════════════ */
.legal-content h2{font-size:var(--text-h3);margin-top:2.5rem;margin-bottom:.85rem}
.legal-content h3{font-size:var(--text-h4);margin-top:1.5rem;margin-bottom:.6rem}
.legal-content p{color:var(--text-muted);margin-bottom:.85rem;line-height:1.8}
.legal-content ul{padding-left:1.25rem;margin-bottom:.85rem}
.legal-content ul li{
  color:var(--text-muted);margin-bottom:.4rem;line-height:1.6;
  padding-left:.85rem;position:relative;
}
.legal-content ul li::before{
  content:'';position:absolute;left:0;top:.55rem;
  width:5px;height:5px;border-radius:50%;background:var(--gold);
}
.placeholder{
  background:var(--gold-pale);border:1.5px dashed var(--gold);
  border-radius:4px;padding:.05rem .45rem;font-weight:600;color:var(--gold);
}
.legal-warning{
  background:rgba(var(--gold-rgb),.05);border-left:4px solid var(--gold);
  padding:1.25rem 1.5rem;border-radius:0 var(--radius) var(--radius) 0;margin-bottom:2rem;
}
.legal-warning p{color:var(--ink);margin:0;font-weight:500}

/* ═══════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════ */
.reveal{opacity:0;transform:translateY(40px);transition:opacity .8s var(--ease),transform .8s var(--ease)}
.reveal-left{opacity:0;transform:translateX(-40px);transition:opacity .8s var(--ease),transform .8s var(--ease)}
.reveal-right{opacity:0;transform:translateX(40px);transition:opacity .8s var(--ease),transform .8s var(--ease)}
.reveal-scale{opacity:0;transform:scale(.9);transition:opacity .8s var(--ease),transform .8s var(--ease)}

.reveal.visible,.reveal-left.visible,.reveal-right.visible,.reveal-scale.visible{opacity:1;transform:none}

.stagger>*{transition-delay:calc(var(--i,0) * .12s)}

@media(prefers-reduced-motion:reduce){
  .reveal,.reveal-left,.reveal-right,.reveal-scale{opacity:1;transform:none;transition:none}
  .hero-scroll-dot{animation:none}
  .hero::after{animation:none}
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE GRIDS
   ═══════════════════════════════════════════════════ */
@media(min-width:600px){.grid-2c{grid-template-columns:repeat(2,1fr)}}
@media(min-width:768px){.grid-2{grid-template-columns:repeat(2,1fr)}.grid-3{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.grid-3{grid-template-columns:repeat(3,1fr)}.grid-4{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1280px){.grid-4{grid-template-columns:repeat(4,1fr)}}

@media(min-width:768px){.container{padding:0 2rem}}
@media(min-width:1280px){.container{padding:0 2.5rem}}

/* ── FOCUS & SELECTION ────────────────────────────── */
:focus-visible{outline:2px solid var(--gold);outline-offset:3px;border-radius:4px}
::selection{background:rgba(var(--gold-rgb),.15);color:var(--ink)}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* ── UTILITIES ────────────────────────────────────── */
.mb-0{margin-bottom:0}.mb-sm{margin-bottom:var(--s-sm)}.mb-md{margin-bottom:var(--s-md)}.mb-lg{margin-bottom:var(--s-lg)}

/* ── CONTAINER NARROW ────────────────────────────── */
.container--narrow{max-width:820px}

/* ═══════════════════════════════════════════════════
   COMPANY DETAIL PAGE
   ═══════════════════════════════════════════════════ */
.company-hero{
  position:relative;padding:10rem 0 4rem;overflow:hidden;
  background:var(--ink);
}
.company-hero::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse at 30% 80%,rgba(var(--gold-rgb),.06) 0%,transparent 60%);
}
.company-hero .container{position:relative;z-index:2}
.company-hero-inner{
  display:grid;grid-template-columns:1fr;gap:2rem;align-items:center;
}
.company-hero-logo{
  display:inline-flex;align-items:center;
  background:rgba(255,255,255,.08);backdrop-filter:blur(10px);
  padding:.75rem 1.5rem;border-radius:var(--radius-lg);
  border:1px solid rgba(255,255,255,.1);margin-bottom:1.5rem;
}
.company-hero-logo img,.company-hero-logo svg{
  height:48px;width:auto;max-width:200px;object-fit:contain;
}
.company-hero h1{color:#fff;margin-bottom:var(--s-sm)}
.company-hero .hero-text{color:rgba(255,255,255,.55);max-width:560px}
.company-hero-img{
  border-radius:var(--radius-xl);overflow:hidden;
  aspect-ratio:16/10;max-height:380px;
}
.company-hero-img img{width:100%;height:100%;object-fit:cover}

@media(min-width:768px){.company-hero{padding:12rem 0 5rem}}
@media(min-width:1024px){
  .company-hero{padding:14rem 0 6rem}
  .company-hero-inner{grid-template-columns:1.1fr 1fr;gap:4rem}
}

/* Company Stats Row */
.company-stats{
  display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;
  padding:2rem 0;margin:2rem 0;
  border-top:1px solid var(--border-light);border-bottom:1px solid var(--border-light);
}
.company-stat{text-align:center;padding:.5rem}
.company-stat-value{
  font-family:'Cormorant Garamond',serif;font-size:var(--text-h2);
  font-weight:700;color:var(--gold);line-height:1;
}
.company-stat-label{font-size:var(--text-xs);color:var(--text-muted);margin-top:.2rem;text-transform:uppercase;letter-spacing:.06em}
@media(min-width:768px){.company-stats{grid-template-columns:repeat(4,1fr)}}

/* Company Services Grid */
.company-services-grid{display:grid;grid-template-columns:1fr;gap:1.25rem;margin:2rem 0}
@media(min-width:600px){.company-services-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.company-services-grid{grid-template-columns:repeat(3,1fr)}}

.company-service-card{
  background:var(--bg);border:1px solid var(--border-light);
  border-radius:var(--radius-lg);padding:1.75rem;
  transition:all .4s var(--ease);
}
.company-service-card:hover{
  transform:translateY(-5px);box-shadow:var(--shadow-md);
  border-color:var(--gold-pale);
}
.company-service-card .service-icon{
  width:48px;height:48px;display:flex;align-items:center;justify-content:center;
  border-radius:var(--radius);background:var(--gold-pale);color:var(--gold);
  margin-bottom:1rem;
}
.company-service-card .service-icon svg{width:22px;height:22px}
.company-service-card h4{font-family:'Outfit',sans-serif;font-weight:600;margin-bottom:.35rem}
.company-service-card p{font-size:var(--text-sm);color:var(--text-muted);line-height:1.65}

/* Company Gallery */
.company-gallery{display:grid;grid-template-columns:repeat(2,1fr);gap:.75rem;margin:2rem 0}
@media(min-width:768px){.company-gallery{grid-template-columns:repeat(3,1fr)}}
.company-gallery-item{
  border-radius:var(--radius-lg);overflow:hidden;
  aspect-ratio:4/3;position:relative;
}
.company-gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform 4s var(--ease)}
.company-gallery-item:hover img{transform:scale(1.06)}
.company-gallery-item::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 50%,rgba(var(--ink-rgb),.4));
}

/* Company CTA Banner */
.company-cta-banner{
  display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:1.5rem;
  background:var(--cream);border-radius:var(--radius-xl);padding:2.5rem;margin:2rem 0;
}
.company-cta-banner h3{margin-bottom:.25rem}
.company-cta-banner p{color:var(--text-muted);font-size:var(--text-sm)}

/* Certif inline */
.certif-inline{display:flex;flex-wrap:wrap;gap:.75rem;margin:1.5rem 0}
.certif-inline-item{
  display:inline-flex;align-items:center;gap:.45rem;
  padding:.5rem 1rem;border-radius:99px;
  background:var(--gold-pale);color:var(--gold);
  font-size:var(--text-xs);font-weight:700;
  text-transform:uppercase;letter-spacing:.06em;
}
.certif-inline-item svg{width:16px;height:16px}

/* Sibling company links */
.sibling-companies{
  display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;margin:2rem 0;
}
@media(min-width:768px){.sibling-companies{grid-template-columns:repeat(4,1fr)}}
.sibling-card{
  display:flex;flex-direction:column;align-items:center;text-align:center;
  padding:1.5rem 1rem;background:var(--bg);
  border:1px solid var(--border-light);border-radius:var(--radius-lg);
  transition:all .4s var(--ease);gap:.75rem;
}
.sibling-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-md);border-color:var(--gold-pale)}
.sibling-card img,.sibling-card svg{height:32px;width:auto;max-width:100px;object-fit:contain}
.sibling-card span{font-size:var(--text-sm);font-weight:500;color:var(--ink)}
