/* ============================================
   CABINET ASMAA BOULZOUGUI — STYLE PREMIUM
   Couleurs : bleu nuit, gris ardoise, blanc cassé
   ============================================ */

/* VARIABLES */
:root {
  --navy:       #183247;
  --navy-dark:  #0f2030;
  --navy-mid:   #1e3d58;
  --steel:      #4F6B80;
  --slate:      #5F6872;
  --grey-light: #D9DEE3;
  --grey-pale:  #EEF1F4;
  --cream:      #F7F8FA;
  --white:      #FFFFFF;
  --gold:       #B8976A;
  --gold-light: #D4B483;

  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans:  'Inter', 'Helvetica Neue', Arial, sans-serif;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 12px rgba(24,50,71,0.07);
  --shadow-md: 0 8px 32px rgba(24,50,71,0.12);
  --shadow-lg: 0 20px 60px rgba(24,50,71,0.18);
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  color: var(--navy);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* TYPOGRAPHIE */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; font-family: var(--font-sans); font-weight: 600; }

p { color: var(--slate); line-height: 1.8; }

/* NAVIGATION */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.navbar-monogram {
  height: 52px;
  width: auto;
  max-width: 200px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--white);
  padding: 6px 12px;
  box-shadow: 0 1px 6px rgba(24,50,71,0.12);
  transition: box-shadow var(--transition);
}

.navbar-monogram img {
  height: 38px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.navbar.scrolled .navbar-monogram { background: var(--white); }

.navbar-brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.navbar-brand-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
  transition: color var(--transition);
}

.navbar.scrolled .navbar-brand-name { color: var(--navy); }

.navbar-brand-title {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  transition: color var(--transition);
}

.navbar.scrolled .navbar-brand-title { color: var(--slate); }

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  padding: 8px 14px;
  border-radius: 2px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.navbar.scrolled .nav-link { color: var(--slate); }
.nav-link:hover { color: var(--white); }
.navbar.scrolled .nav-link:hover { color: var(--navy); }

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--navy); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.navbar.scrolled .nav-cta { background: var(--gold); color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: all var(--transition);
}

.navbar.scrolled .hamburger span { background: var(--navy); }

/* HERO SECTION */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 5% 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.hero::after {
  content: '';
  position: absolute;
  right: -200px; top: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,151,106,0.08) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-left {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 8px 18px;
  border: 1px solid rgba(184,151,106,0.4);
  border-radius: 2px;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-badge-text {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
}

.hero h1 span {
  color: var(--gold-light);
  font-style: italic;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 30px;
}

.hero-description {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  padding: 15px 34px;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all var(--transition);
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 15px 34px;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all var(--transition);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.hero-monogram-large {
  width: 340px;
  height: auto;
  background: var(--white);
  border: 1px solid rgba(184,151,106,0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 28px 32px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.28);
}

.hero-monogram-large::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(184,151,106,0.12);
  border-radius: 3px;
  pointer-events: none;
}

.hero-monogram-large img {
  width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  border-radius: 2px;
}

/* Legacy text fallback */
.hero-monogram-large span {
  display: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  width: 100%;
  max-width: 380px;
  border-radius: 2px;
  overflow: hidden;
}

.hero-stat {
  background: rgba(255,255,255,0.04);
  padding: 22px 16px;
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}

.hero-stat-label {
  font-size: 0.67rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
  line-height: 1.3;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--white), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* SECTIONS COMMUNES */
.section {
  padding: 100px 5%;
}

.section-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 60px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-label span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 580px;
  line-height: 1.8;
}

/* PRÉSENTATION */
.presentation {
  background: var(--cream);
}

.presentation-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.presentation-visual {
  position: relative;
}

.presentation-card {
  background: var(--white);
  border-radius: 4px;
  padding: 50px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.presentation-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--navy), var(--gold));
}

.presentation-quote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 24px;
}

.presentation-quote-source {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}

.presentation-decorative {
  position: absolute;
  bottom: 24px; right: 30px;
  font-family: var(--font-serif);
  font-size: 8rem;
  color: var(--grey-pale);
  line-height: 1;
  font-style: italic;
  pointer-events: none;
}

.presentation-text h2 { margin-bottom: 24px; }
.presentation-text p { margin-bottom: 20px; }

.presentation-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--grey-light);
  border-radius: 2px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.pillar:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.pillar-icon {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.pillar-content h4 { font-size: 0.85rem; margin-bottom: 2px; color: var(--navy); }
.pillar-content p { font-size: 0.78rem; color: var(--slate); line-height: 1.5; }

/* VALEURS */
.valeurs {
  background: var(--white);
}

.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--grey-light);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.valeur-item {
  background: var(--white);
  padding: 50px 40px;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}

.valeur-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(to right, var(--navy), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.valeur-item:hover { background: var(--cream); }
.valeur-item:hover::after { transform: scaleX(1); }

.valeur-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
  transition: color var(--transition);
}

.valeur-item:hover .valeur-number { color: var(--gold-light); }

.valeur-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.valeur-desc {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.7;
}

/* EXPERTISES */
.expertises {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.expertises::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.expertises .section-label span { color: var(--gold-light); }
.expertises .section-label::before { background: var(--gold); }
.expertises .section-title { color: var(--white); }
.expertises .section-subtitle { color: rgba(255,255,255,0.6); }

.expertises-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.expertise-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 40px 32px;
  transition: all var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.expertise-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(184,151,106,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.expertise-card:hover::before { transform: scaleX(1); }

.expertise-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: block;
}

.expertise-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.expertise-desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.expertise-arrow {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--transition);
}

.expertise-card:hover .expertise-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* APROPOS PAGE */
.apropos-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 140px 5% 80px;
  position: relative;
  overflow: hidden;
}

.apropos-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.page-hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.page-hero-label span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  line-height: 1.8;
}

/* PARCOURS */
.parcours {
  background: var(--cream);
}

.parcours-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.parcours-aside {
  position: sticky;
  top: 100px;
}

.parcours-card {
  background: var(--white);
  border-radius: 4px;
  padding: 44px;
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--navy);
}

.parcours-card-monogram {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}

.parcours-card-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.parcours-card-title {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--grey-light);
}

.parcours-infos {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.parcours-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.parcours-info-icon {
  width: 32px;
  height: 32px;
  background: var(--navy);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.parcours-info-content { flex: 1; }

.parcours-info-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate);
  display: block;
}

.parcours-info-value {
  font-size: 0.88rem;
  color: var(--navy);
  line-height: 1.4;
  margin-top: 2px;
  display: block;
}

/* TIMELINE */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: flex;
  gap: 28px;
  position: relative;
  padding-bottom: 40px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 32px;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--navy);
  z-index: 1;
  flex-shrink: 0;
}

.timeline-line {
  flex: 1;
  width: 1px;
  background: var(--grey-light);
  margin-top: 6px;
}

.timeline-item:last-child .timeline-line { display: none; }

.timeline-content {
  background: var(--white);
  border-radius: 4px;
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  flex: 1;
  border-left: 3px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.timeline-content:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.timeline-year {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.timeline-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.timeline-text {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.7;
}

/* CONTACT */
.contact-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 140px 5% 80px;
  position: relative;
  overflow: hidden;
}

.contact-section {
  background: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border-radius: 4px;
  padding: 48px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}

.contact-info-header {
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--grey-light);
}

.contact-info-header h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-info-header p {
  font-size: 0.88rem;
  color: var(--slate);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-item-body {}

.contact-item-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate);
  display: block;
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.4;
  display: block;
}

.contact-item-value a {
  color: var(--navy);
  transition: color var(--transition);
}

.contact-item-value a:hover { color: var(--gold); }

/* FORMULAIRE */
.contact-form-card {
  background: var(--white);
  border-radius: 4px;
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form-intro {
  font-size: 0.88rem;
  color: var(--slate);
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--grey-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-control {
  background: var(--cream);
  border: 1px solid var(--grey-light);
  border-radius: 2px;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--navy);
  font-family: var(--font-sans);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(24,50,71,0.07);
  background: var(--white);
}

.form-control::placeholder { color: var(--slate); opacity: 0.5; }

textarea.form-control { resize: vertical; min-height: 130px; }

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235F6872' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all var(--transition);
  margin-top: 10px;
}

.form-submit:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.form-success {
  display: none;
  background: #eaf7ee;
  border: 1px solid #a8d5b5;
  border-radius: 2px;
  padding: 16px 22px;
  font-size: 0.9rem;
  color: #1e5c33;
  margin-top: 20px;
  align-items: center;
  gap: 10px;
}

.form-success.visible { display: flex; }

/* DOMAINES */
.domaines-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 140px 5% 80px;
  position: relative;
  overflow: hidden;
}

.domaines-section {
  background: var(--white);
}

.domaines-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.domaine-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--grey-light);
  transition: background var(--transition);
}

.domaine-item:last-child { border-bottom: none; }
.domaine-item:hover { background: var(--cream); }

.domaine-num {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--grey-light);
  border-right: 1px solid var(--grey-light);
  padding: 40px 0;
  transition: color var(--transition);
}

.domaine-item:hover .domaine-num { color: var(--gold-light); }

.domaine-content {
  padding: 40px 44px;
}

.domaine-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.domaine-icon {
  font-size: 1.5rem;
  margin-right: 14px;
}

.domaine-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  flex: 1;
}

.domaine-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,151,106,0.1);
  padding: 5px 12px;
  border-radius: 2px;
}

.domaine-desc {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 18px;
}

.domaine-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.domaine-point {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--steel);
  background: var(--cream);
  padding: 5px 12px;
  border-radius: 2px;
}

.domaine-point::before {
  content: '–';
  color: var(--gold);
  font-weight: 600;
}

/* CTA SECTION */
.cta-section {
  background: var(--navy);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  font-size: 0.95rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* FOOTER */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 60px 5% 30px;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 30px;
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  margin-top: 12px;
  letter-spacing: 0.04em;
}

.footer-brand-title {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  display: block;
}

.footer-brand-desc {
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-section-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-link:hover { color: var(--gold-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.82rem;
}

.footer-contact-icon { font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; }
.footer-contact-text { color: rgba(255,255,255,0.5); line-height: 1.5; }
.footer-contact-text a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-contact-text a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.78rem;
}

.footer-baseline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold-light);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--navy-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open { transform: translateY(0); }

.mobile-close {
  position: absolute;
  top: 24px;
  right: 5%;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 10px;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  letter-spacing: 0.04em;
}

.mobile-nav-link:hover { color: var(--white); }

.mobile-nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 10px;
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-content { grid-template-columns: 1fr; gap: 50px; }
  .hero-right { align-items: flex-start; }
  .hero-stats { max-width: 340px; }
  .presentation-grid { grid-template-columns: 1fr; gap: 50px; }
  .valeurs-grid { grid-template-columns: 1fr 1fr; }
  .expertises-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .navbar-nav { display: none; }
  .hamburger { display: flex; }

  .section { padding: 70px 5%; }
  .hero { padding: 100px 5% 60px; }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }

  .valeurs-grid { grid-template-columns: 1fr; }
  .expertises-grid { grid-template-columns: 1fr; }
  .presentation-pillars { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .parcours-layout { grid-template-columns: 1fr; }
  .parcours-aside { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .contact-info-card { position: static; }
}

@media (max-width: 480px) {
  .navbar { height: 68px; }
  .hero-monogram-large { width: 240px; padding: 18px 22px; }
  .navbar-monogram { max-width: 160px; padding: 5px 8px; }
  .navbar-monogram img { height: 32px; max-width: 150px; }
  .hero-stats { grid-template-columns: 1fr; max-width: 220px; }
  .domaine-item { grid-template-columns: 1fr; }
  .domaine-num { display: none; }
  .domaine-content { padding: 28px 24px; }
  .domaine-header { flex-wrap: wrap; gap: 10px; }
  .contact-form-card, .contact-info-card { padding: 28px 24px; }
  .valeur-item { padding: 36px 24px; }
}
