/* ── VARIABLES ── */
:root {
  --gold: #C8A84B;
  --gold-light: #E8C96A;
  --gold-pale: #F5ECC8;
  --gold-dim: rgba(200,168,75,0.15);
  --navy: #06111F;
  --navy-mid: #0D1F35;
  --navy-light: #152C45;
  --navy-soft: #1a3a5c;
  --white: #FAFAF8;
  --off-white: #F2EFE8;
  --cream: #F8F6F0;
  --text: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-light: #888;
  --border: rgba(200,168,75,0.2);
  --radius: 4px;
  --transition: 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-gold: 0 12px 40px rgba(200,168,75,0.25);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── CURSOR ── */
@media (pointer: fine) {
  body { cursor: none; }
  .cursor, .cursor-ring { display: block; }
}
@media (pointer: coarse) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none !important; }
}
.cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed; width: 40px; height: 40px;
  border: 1px solid var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%,-50%);
  transition: transform 0.15s ease-out, width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.5;
}
body:has(a:hover) .cursor, body:has(button:hover) .cursor,
body:has(.btn:hover) .cursor { width: 6px; height: 6px; }
body:has(a:hover) .cursor-ring, body:has(button:hover) .cursor-ring,
body:has(.btn:hover) .cursor-ring { width: 56px; height: 56px; opacity: 0.8; border-color: var(--gold-light); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  transition: all 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
nav.scrolled {
  background: rgba(6,17,31,0.95);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  height: 70px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 20px; font-weight: 800;
  color: var(--gold); letter-spacing: 3px;
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-diamond { font-size: 14px; opacity: 0.8; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-decoration: none; letter-spacing: 1.5px; text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--gold); transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-lang { display: flex; gap: 6px; }
.lang-btn {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 600;
  padding: 6px 12px; border-radius: 2px;
  border: 1px solid rgba(200,168,75,0.3);
  background: transparent; color: rgba(255,255,255,0.5);
  cursor: none; letter-spacing: 1px;
  transition: all 0.3s;
}
.lang-btn.active, .lang-btn:hover {
  background: var(--gold); color: var(--navy); border-color: var(--gold);
}
.nav-cta {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 12px 24px; background: var(--gold); color: var(--navy);
  border: none; cursor: none; transition: all 0.3s;
  text-decoration: none; display: inline-block;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.nav-hamburger { display: none; flex-direction: column; gap: 6px; cursor: none; padding: 8px; }
.nav-hamburger span { display: block; width: 26px; height: 1.5px; background: var(--gold); transition: all 0.3s; border-radius: 1px; }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; inset: 0; background: var(--navy);
  z-index: 999; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 300; color: var(--white);
  text-decoration: none; transition: color 0.3s;
  letter-spacing: 1px;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .nav-lang { margin-top: 20px; }

/* ── PAGE HEADER ── */
.page-header {
  min-height: 55vh;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding-top: 80px;
}
.page-header-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.1);
  transition: transform 10s ease, opacity 0.5s;
}
.page-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,17,31,0.88) 0%, rgba(6,17,31,0.7) 50%, rgba(6,17,31,0.9) 100%);
}
.page-header-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 900px; padding: 0 20px;
}
.page-header-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700;
  color: var(--gold); letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 12px;
}
.page-header-eyebrow::before, .page-header-eyebrow::after {
  content: ''; width: 40px; height: 1px; background: var(--gold); opacity: 0.5;
}
.page-header-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 300; color: var(--white); line-height: 1.05; margin-bottom: 20px;
}
.page-header-title em { font-style: italic; color: var(--gold); }
.page-header-subtitle {
  font-size: 18px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 600px; margin: 0 auto;
}

/* ── BREADCRUMBS ── */
.breadcrumbs {
  display: flex; gap: 12px; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-top: 32px;
}
.breadcrumbs a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.3s; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { color: rgba(200,168,75,0.4); }
.breadcrumbs .current { color: var(--gold); }

/* ── HERO (Home) ── */
.hero {
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: var(--navy);
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.1);
  transition: transform 10s ease;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,17,31,0.92) 0%, rgba(6,17,31,0.75) 50%, rgba(6,17,31,0.88) 100%);
}
.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,168,75,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,168,75,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; width: 100%; padding: 0 10%;
  padding-top: 80px;
}
.hero-left { position: relative; z-index: 2; }
.hero-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700;
  color: var(--gold); letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: ''; width: 40px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5.5vw, 84px);
  font-weight: 300; line-height: 1.0;
  color: var(--white); margin-bottom: 16px;
}
.hero-title strong { font-weight: 600; color: var(--gold); display: block; }
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 400; font-style: italic;
  color: rgba(255,255,255,0.45); margin-bottom: 36px; line-height: 1.4;
}
.hero-desc {
  font-size: 16px; color: rgba(255,255,255,0.6);
  line-height: 1.8; max-width: 480px; margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  font-family: 'Syne', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 16px 36px; border: none; cursor: none; transition: all 0.3s;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--gold); color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent; color: var(--gold);
  border: 1px solid rgba(200,168,75,0.5);
}
.btn-outline:hover {
  border-color: var(--gold); background: rgba(200,168,75,0.08);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white); color: var(--navy);
}
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }

/* ── HERO RIGHT / DIAMOND ── */
.hero-right {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  height: 100%;
}
.hero-diamond-wrap {
  position: relative; width: 420px; height: 420px;
}
.hero-diamond {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.hero-diamond svg { width: 100%; height: 100%; }
.diamond-pulse {
  position: absolute; inset: -20px;
  border: 1px solid rgba(200,168,75,0.15);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}
.diamond-pulse-2 { inset: -50px; animation-delay: 1.5s; }
@keyframes pulse {
  0%,100% { opacity: 0.3; transform: scale(0.95); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

/* ── HERO STATS ── */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(200,168,75,0.08); border-top: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(4, 1fr);
  z-index: 3;
}
.hero-stat {
  padding: 32px 24px; border-right: 1px solid var(--border);
  text-align: center;
}
.hero-stat:last-child { border-right: none; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 600; color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: 'Syne', sans-serif;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-top: 8px;
}

/* ── TICKER ── */
.ticker {
  background: var(--gold); overflow: hidden;
  padding: 12px 0; white-space: nowrap;
}
.ticker-inner {
  display: inline-flex; gap: 0;
  animation: ticker 35s linear infinite;
}
.ticker-item {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700;
  color: var(--navy); letter-spacing: 2px; text-transform: uppercase;
  padding: 0 40px;
}
.ticker-sep { color: var(--navy); opacity: 0.4; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── SECTIONS ── */
section { padding: 100px 8%; }
.section-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700;
  color: var(--gold); letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400; line-height: 1.1;
  color: var(--navy); margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-subtitle {
  font-size: 17px; color: var(--text-mid);
  line-height: 1.7; max-width: 600px;
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(50px);
  transition: all 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.reveal-left {
  opacity: 0; transform: translateX(-50px);
  transition: all 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0; transform: scale(0.9);
  transition: all 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ── CARDS ── */
.card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,168,75,0.2);
}
.card-img-wrap {
  position: relative; overflow: hidden; height: 220px;
}
.card-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.card:hover .card-img { transform: scale(1.08); }
.card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,17,31,0.7), transparent 60%);
}
.card-body { padding: 28px; }
.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 500; color: var(--navy);
  margin-bottom: 10px; line-height: 1.3;
}
.card-text {
  font-size: 14px; color: var(--text-mid); line-height: 1.7;
}
.card-meta {
  font-family: 'Syne', sans-serif; font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}

/* ── ABOUT ── */
.about { background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; margin-top: 60px; }
.about-img-wrap {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
}
.about-img {
  width: 100%; height: 100%; object-fit: cover;
  min-height: 500px;
}
.about-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,17,31,0.6), transparent);
}
.about-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-bottom: 40px; }
.about-number-card {
  background: var(--navy); padding: 36px 28px;
  transition: all 0.3s;
}
.about-number-card:hover { background: var(--navy-mid); transform: translateY(-2px); }
.about-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 600; color: var(--gold); line-height: 1;
}
.about-num-label {
  font-family: 'Syne', sans-serif;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-top: 8px;
}
.about-text p {
  font-size: 16px; color: var(--text-mid);
  line-height: 1.9; margin-bottom: 20px;
}
.about-vision {
  background: var(--navy); padding: 36px;
  border-left: 3px solid var(--gold); margin-top: 30px;
  position: relative;
}
.about-vision::before {
  content: '"'; position: absolute; top: 20px; left: 20px;
  font-family: 'Cormorant Garamond', serif; font-size: 80px;
  color: rgba(200,168,75,0.15); line-height: 1;
}
.about-vision p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; font-style: italic;
  color: var(--white); line-height: 1.6; position: relative; z-index: 1;
}
.about-vision cite {
  display: block; margin-top: 16px;
  font-family: 'Syne', sans-serif; font-style: normal;
  font-size: 11px; letter-spacing: 2px; color: var(--gold);
}

/* ── FILIALES ── */
.filiales { background: var(--navy); }
.filiales .section-title { color: var(--white); }
.filiales .section-subtitle { color: rgba(255,255,255,0.5); }
.filiales-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 64px;
}
.filiale-card {
  background: var(--navy-light);
  border: 1px solid rgba(200,168,75,0.08);
  transition: all 0.4s ease;
  position: relative; overflow: hidden;
  cursor: none;
}
.filiale-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold);
  transform: scaleX(0); transition: transform 0.4s;
}
.filiale-card:hover { background: var(--navy-mid); transform: translateY(-6px); border-color: rgba(200,168,75,0.25); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.filiale-card:hover::before { transform: scaleX(1); }
.filiale-card-img {
  height: 180px; width: 100%; object-fit: cover;
  opacity: 0.5; transition: all 0.4s;
}
.filiale-card:hover .filiale-card-img { opacity: 0.7; transform: scale(1.05); }
.filiale-card-body { padding: 32px; position: relative; }
.filiale-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px; font-weight: 300;
  color: rgba(200,168,75,0.08); line-height: 1;
  position: absolute; top: 16px; right: 20px;
}
.filiale-icon { font-size: 32px; margin-bottom: 16px; position: relative; z-index: 1; }
.filiale-name {
  font-family: 'Syne', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.filiale-full {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400;
  color: var(--white); margin-bottom: 14px; line-height: 1.2;
}
.filiale-desc {
  font-size: 14px; color: rgba(255,255,255,0.5);
  line-height: 1.7; margin-bottom: 20px;
}
.filiale-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.filiale-tag {
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 12px; border: 1px solid rgba(200,168,75,0.3); color: var(--gold);
  background: rgba(200,168,75,0.05);
}
.filiale-countries {
  display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap;
}
.country-flag {
  font-size: 20px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  transition: transform 0.3s;
}
.filiale-card:hover .country-flag { transform: scale(1.15); }

/* ── STRATEGY ── */
.strategy { background: var(--off-white); }
.strategy-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 64px; }
.diamond-strategy {
  position: relative; display: flex; align-items: center; justify-content: center;
  min-height: 400px;
}
.diamond-strategy svg { width: 100%; max-width: 380px; }
.strategy-list { }
.strategy-item {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 24px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s; cursor: none;
}
.strategy-item:hover .strategy-facet { background: var(--gold); color: var(--navy); transform: rotate(45deg); }
.strategy-item:last-child { border-bottom: none; }
.strategy-facet {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1.5px solid var(--gold); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.strategy-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--navy); margin-bottom: 6px;
}
.strategy-desc { font-size: 15px; color: var(--text-mid); line-height: 1.7; }

/* ── PAYS ── */
.pays { background: var(--navy); position: relative; overflow: hidden; }
.pays .section-title { color: var(--white); }
.pays .section-subtitle { color: rgba(255,255,255,0.5); }
.pays-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 64px;
}
.pays-card {
  background: var(--navy-light);
  padding: 40px 28px; text-align: center;
  border: 1px solid rgba(200,168,75,0.08);
  transition: all 0.4s ease; cursor: none; position: relative; overflow: hidden;
}
.pays-card:hover { background: rgba(200,168,75,0.06); transform: translateY(-8px); border-color: rgba(200,168,75,0.25); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.pays-card-img {
  width: 80px; height: 80px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 16px; border: 2px solid rgba(200,168,75,0.3);
  transition: all 0.4s;
}
.pays-card:hover .pays-card-img { transform: scale(1.1); border-color: var(--gold); }
.pays-flag { font-size: 48px; margin-bottom: 16px; display: block; transition: transform 0.4s; }
.pays-card:hover .pays-flag { transform: scale(1.2); }
.pays-name {
  font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--white); margin-bottom: 6px;
}
.pays-role { font-size: 13px; color: var(--gold); letter-spacing: 1px; margin-bottom: 16px; }
.pays-filiales { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; }
.pays-badge {
  display: inline-block; margin-top: 20px;
  font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; background: rgba(200,168,75,0.1); color: var(--gold);
  border: 1px solid rgba(200,168,75,0.3);
}

/* ── GOUVERNANCE ── */
.governance-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px;
}
.governance-card {
  background: var(--navy-light);
  padding: 44px 36px;
  border: 1px solid rgba(200,168,75,0.1);
  position: relative; overflow: hidden;
  transition: all 0.4s ease;
}
.governance-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,168,75,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.governance-card.featured {
  background: rgba(200,168,75,0.06);
  border: 1px solid rgba(200,168,75,0.25);
}
.governance-num {
  position: absolute; top: 20px; right: 24px;
  font-family: 'Cormorant Garamond', serif; font-size: 72px;
  font-weight: 300; color: rgba(200,168,75,0.08); line-height: 1;
}
.governance-icon { font-size: 36px; margin-bottom: 20px; position: relative; z-index: 1; }
.governance-name {
  font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.governance-desc {
  font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 24px;
}
.governance-list {
  display: flex; flex-direction: column; gap: 10px;
}
.governance-item {
  font-size: 13px; color: rgba(255,255,255,0.4);
  padding: 10px 12px; border-left: 2px solid rgba(200,168,75,0.3);
  background: rgba(255,255,255,0.02);
  transition: all 0.3s;
}
.governance-card:hover .governance-item { border-left-color: var(--gold); color: rgba(255,255,255,0.6); }

.governance-principles {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px;
}
.governance-principle {
  background: rgba(200,168,75,0.04); padding: 32px 24px;
  border: 1px solid rgba(200,168,75,0.08); text-align: center;
  transition: all 0.4s;
}
.governance-principle:hover { background: rgba(200,168,75,0.08); transform: translateY(-4px); }
.governance-principle-icon { font-size: 32px; margin-bottom: 16px; }
.governance-principle-title {
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.governance-principle-desc { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.6; }

/* ── DIRECTION ── */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 64px;
}
.team-card {
  background: #fff; border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden; transition: all 0.4s ease;
  position: relative;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.team-card-accent {
  height: 5px; background: var(--gold);
  transition: height 0.3s;
}
.team-card:hover .team-card-accent { height: 8px; }
.team-card-body { padding: 36px; }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 20px;
  border: 3px solid rgba(200,168,75,0.3);
  position: relative; overflow: hidden;
}
.team-avatar::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(200,168,75,0.2), transparent 70%);
}
.team-role {
  font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.team-name {
  font-family: 'Cormorant Garamond', serif; font-size: 26px;
  font-weight: 500; color: var(--navy); margin-bottom: 6px;
}
.team-location {
  font-size: 13px; color: var(--text-light); margin-bottom: 20px;
}
.team-bio {
  font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 24px;
}
.team-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.team-tag {
  font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: 1px; padding: 5px 12px;
  border: 1px solid rgba(200,168,75,0.3); color: var(--gold);
  background: rgba(200,168,75,0.04);
}

/* ── ACTUALITÉS ── */
.news-featured {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 24px; margin-top: 64px;
}
.news-main {
  background: var(--navy-light); border: 1px solid rgba(200,168,75,0.12);
  overflow: hidden; transition: all 0.4s;
}
.news-main:hover { border-color: rgba(200,168,75,0.4); }
.news-main-img {
  height: 280px; position: relative; overflow: hidden;
}
.news-main-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.news-main:hover .news-main-img img { transform: scale(1.05); }
.news-main-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--navy-light), transparent);
}
.news-main-badge {
  position: absolute; top: 20px; left: 20px;
  font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px; background: var(--gold); color: var(--navy);
}
.news-main-date {
  position: absolute; bottom: 20px; right: 20px;
  font-family: 'Syne', sans-serif; font-size: 12px; color: rgba(255,255,255,0.5);
}
.news-main-body { padding: 36px; }
.news-main-title {
  font-family: 'Cormorant Garamond', serif; font-size: 28px;
  font-weight: 500; color: var(--white); margin-bottom: 16px; line-height: 1.3;
}
.news-main-excerpt {
  font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 24px;
}
.news-list { display: flex; flex-direction: column; gap: 16px; }
.news-item {
  background: var(--navy-light); border: 1px solid rgba(200,168,75,0.08);
  padding: 24px; display: flex; gap: 20px; align-items: flex-start;
  transition: all 0.3s;
}
.news-item:hover { border-color: rgba(200,168,75,0.3); background: rgba(200,168,75,0.05); transform: translateX(4px); }
.news-item-icon { font-size: 32px; flex-shrink: 0; }
.news-item-meta {
  font-family: 'Syne', sans-serif; font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.news-item-title {
  font-family: 'Cormorant Garamond', serif; font-size: 18px;
  color: var(--white); margin-bottom: 10px; line-height: 1.3;
}
.news-item-link {
  font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: 1px; color: var(--gold); text-decoration: none;
  border-bottom: 1px solid rgba(200,168,75,0.3); padding-bottom: 2px;
  transition: border-color 0.3s;
}
.news-item-link:hover { border-color: var(--gold); }

.news-agenda {
  margin-top: 48px; padding: 36px;
  border: 1px solid rgba(200,168,75,0.15); background: rgba(200,168,75,0.04);
}
.news-agenda-title {
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 28px;
}
.news-agenda-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.news-agenda-item {
  padding: 20px; background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--gold); transition: all 0.3s;
}
.news-agenda-item:hover { background: rgba(255,255,255,0.06); transform: translateX(4px); }
.news-agenda-date {
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700;
  color: var(--gold); margin-bottom: 8px;
}
.news-agenda-text { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ── BLOG ── */
.blog { background: var(--white); }
.blog-filters {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 48px; margin-bottom: 32px; flex-wrap: wrap; gap: 16px;
}
.blog-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 24px;
}
.blog-card {
  background: var(--off-white); overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06); transition: all 0.4s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 220px; position: relative; overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.08); }
.blog-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,17,31,0.6), transparent);
}
.blog-cat {
  position: absolute; top: 16px; left: 16px;
  font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px; background: var(--gold); color: var(--navy);
}
.blog-body { padding: 28px; }
.blog-date { font-size: 13px; color: var(--text-light); margin-bottom: 10px; }
.blog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 500;
  color: var(--navy); margin-bottom: 12px; line-height: 1.3;
}
.blog-card.featured .blog-title { font-size: 30px; }
.blog-excerpt { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; }
.blog-author { font-size: 13px; color: var(--text-light); }
.blog-read {
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border-bottom: 1px solid rgba(200,168,75,0.3);
  transition: border-color 0.3s;
}
.blog-read:hover { border-color: var(--gold); }
.blog-sidebar { display: flex; flex-direction: column; gap: 24px; }

/* ── RECRUTEMENT ── */
.recrutement { background: var(--off-white); }
.recru-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start; margin-bottom: 64px;
}
.recru-img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius); min-height: 400px;
}
.recru-culture-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; color: var(--navy); margin-bottom: 16px;
}
.recru-culture p { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.recru-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.recru-perk {
  background: var(--white); padding: 22px;
  border-left: 3px solid var(--gold);
  transition: all 0.3s;
}
.recru-perk:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.recru-perk strong {
  display: block; color: var(--navy); font-family: 'Syne', sans-serif;
  font-size: 12px; margin-bottom: 6px; letter-spacing: 0.5px;
}
.recru-perk span { font-size: 14px; color: var(--text-mid); line-height: 1.5; }

.recru-rh-box {
  background: var(--navy); border: 1px solid rgba(200,168,75,0.2);
  overflow: hidden; margin-bottom: 40px;
}
.recru-rh-header {
  background: var(--gold); padding: 18px 28px;
  display: flex; align-items: center; gap: 14px;
}
.recru-rh-header-text {
  font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase; color: var(--navy);
}
.recru-rh-header-sub { font-size: 13px; color: rgba(6,17,31,0.7); margin-top: 2px; }
.recru-rh-body { padding: 32px; }

.recru-filter {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px;
}
.filter-btn {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 10px 20px; border: 1px solid rgba(0,0,0,0.15); background: transparent;
  color: var(--text-mid); cursor: none; transition: all 0.3s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--navy); color: var(--gold); border-color: var(--navy);
}
.jobs-grid { display: flex; flex-direction: column; gap: 2px; }
.job-card {
  background: var(--white); padding: 32px 40px;
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease; cursor: none;
}
.job-card:hover { background: var(--navy); transform: translateX(6px); border-color: transparent; }
.job-card:hover .job-title { color: var(--gold); }
.job-card:hover .job-detail { color: rgba(255,255,255,0.5); }
.job-card:hover .job-apply { border-color: var(--gold); color: var(--gold); }
.job-left { }
.job-badge {
  font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 12px; margin-bottom: 12px; display: inline-block;
  border-radius: 2px;
}
.job-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--navy); margin-bottom: 10px; transition: color 0.3s;
}
.job-details { display: flex; gap: 24px; flex-wrap: wrap; }
.job-detail {
  font-size: 14px; color: var(--text-mid); transition: color 0.3s;
  display: flex; align-items: center; gap: 8px;
}
.job-detail::before { content: '•'; color: var(--gold); }
.job-apply {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 14px 28px; border: 1px solid var(--navy);
  background: transparent; color: var(--navy);
  cursor: none; transition: all 0.3s; white-space: nowrap;
  text-decoration: none;
}

.recru-bottom {
  margin-top: 40px; background: var(--navy);
  border: 1px solid rgba(200,168,75,0.15); padding: 36px 40px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px;
}

/* ── CONTACT ── */
.contact { background: var(--navy); }
.contact .section-title { color: var(--white); }
.contact .section-subtitle { color: rgba(255,255,255,0.5); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 64px; }
.contact-info { }
.contact-info-item { padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.contact-info-label {
  font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.contact-info-value { font-size: 17px; color: var(--white); line-height: 1.6; }
.contact-info-value small { color: rgba(255,255,255,0.4); font-size: 14px; }
.contact-offices { margin-top: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-office {
  background: rgba(200,168,75,0.05); padding: 24px;
  border: 1px solid rgba(200,168,75,0.1);
  transition: all 0.3s;
}
.contact-office:hover { background: rgba(200,168,75,0.08); border-color: rgba(200,168,75,0.25); transform: translateY(-4px); }
.office-flag { font-size: 28px; margin-bottom: 10px; }
.office-city {
  font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700;
  color: var(--gold); margin-bottom: 6px;
}
.office-address { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }

.contact-form { }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }
.form-label {
  font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5);
  display: block; margin-bottom: 10px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 16px 20px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(200,168,75,0.2);
  color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 15px;
  outline: none; transition: all 0.3s; cursor: none; border-radius: var(--radius);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold); background: rgba(200,168,75,0.06);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.1);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-select option { background: var(--navy); }
.form-submit {
  width: 100%; padding: 20px;
  background: var(--gold); color: var(--navy);
  font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 800;
  letter-spacing: 3px; text-transform: uppercase;
  border: none; cursor: none; transition: all 0.3s; border-radius: var(--radius);
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.seo-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 8px 16px; background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3); color: #22c55e;
  margin-bottom: 20px; border-radius: var(--radius);
}

/* ── FOOTER ── */
footer {
  background: #020D19;
  border-top: 1px solid rgba(200,168,75,0.15);
}
.footer-main {
  padding: 80px 8%;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
}
.footer-brand { }
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 800; letter-spacing: 3px; color: var(--gold);
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-style: italic; color: rgba(255,255,255,0.4);
  margin-bottom: 24px; line-height: 1.5;
}
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.3); line-height: 1.8; margin-bottom: 28px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid rgba(200,168,75,0.2); color: rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; text-decoration: none; transition: all 0.3s; cursor: none;
  border-radius: 50%;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,168,75,0.08); transform: translateY(-3px); }
.footer-col-title {
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 14px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.4); text-decoration: none; transition: all 0.3s;
  cursor: none; display: inline-block;
}
.footer-links a:hover { color: var(--gold); transform: translateX(4px); }
.footer-bottom {
  padding: 24px 8%; border-top: 1px solid rgba(255,255,255,0.04);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-legal { font-size: 13px; color: rgba(255,255,255,0.2); }
.footer-legal a { color: rgba(200,168,75,0.5); text-decoration: none; transition: color 0.3s; }
.footer-legal a:hover { color: var(--gold); }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(6,17,31,0.95);
  z-index: 9000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
  backdrop-filter: blur(10px);
  padding: 20px;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--navy-light); border: 1px solid var(--border);
  max-width: 680px; width: 100%; max-height: 85vh; overflow-y: auto;
  padding: 48px; position: relative;
  transform: translateY(30px) scale(0.95); transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  border-radius: var(--radius);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; color: rgba(255,255,255,0.4);
  font-size: 28px; cursor: none; transition: color 0.3s; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center; border-radius: 50%;
}
.modal-close:hover { color: var(--gold); background: rgba(200,168,75,0.1); }

/* ── TOAST ── */
#toast {
  position: fixed; bottom: 32px; right: 32px;
  background: var(--gold); color: var(--navy);
  padding: 18px 32px; font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  z-index: 9999; transform: translateY(120px); opacity: 0;
  transition: all 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .about-grid, .strategy-layout, .contact-layout, .recru-header { grid-template-columns: 1fr; gap: 40px; }
  .filiales-grid { grid-template-columns: 1fr 1fr; }
  .pays-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .news-featured { grid-template-columns: 1fr; }
  .news-agenda-grid { grid-template-columns: 1fr 1fr; }
  .governance-grid { grid-template-columns: 1fr; }
  .governance-principles { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 768px) {
  section { padding: 60px 5%; }
  .hero-left { padding: 0 5%; }
  .filiales-grid, .pays-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .about-numbers { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .recru-perks { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .governance-principles { grid-template-columns: 1fr; }
  .news-agenda-grid { grid-template-columns: 1fr; }
  .page-header { min-height: 40vh; }
  .page-header-title { font-size: 36px; }
}

/* ── LOGO NAV ─────────────────────────────── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}
.nav-logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(1);
  transition: opacity 0.3s;
}
.nav-logo-img:hover { opacity: 0.85; }
.nav-logo-diamond {
  color: var(--gold);
  font-size: 20px;
}
.nav-logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}

/* FOOTER LOGO avec image */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
}

/* scrolled nav */
#mainNav.scrolled {
  background: rgba(10, 14, 35, 0.97);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
