  * { margin: 0; padding: 0; box-sizing: border-box; }
  :root {
    --bleu-petrole: #0B1D34;
    --bleu-profond: #132A47;
    --bleu-mediterranee: #2e7a9e;
    --bleu-clair: #a8c8dc;
    --or: #C9AA74;
    --or-clair: #E6D7B8;
    --blanc-casse: #F6F3EC;
    --gris-clair: #e8e5dd;
    --texte: #0B1D34;
    --texte-clair: #5a6a7a;
  }
  html { scroll-behavior: smooth; scroll-padding-top: 80px; }
  body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--texte);
    background: var(--blanc-casse);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
  /* Sharper headings */
  h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
  }
  .playfair, .cormorant { font-family: 'Cormorant Garamond', serif; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 16px 60px;
    display: flex; justify-content: space-between; align-items: center;
    transition: all 0.4s ease;
    background: transparent;
  }
  nav.scrolled {
    background: rgba(11, 29, 52, 0.95);
    backdrop-filter: blur(12px);
    padding: 12px 60px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
  }
  .logo {
    display: inline-block;
    width: 110px;
    height: 66px;
    background-color: var(--or);
    -webkit-mask: url('img/sofiel-logo.png') center / contain no-repeat;
    mask: url('img/sofiel-logo.png') center / contain no-repeat;
    cursor: pointer;
    text-indent: -9999px;
    overflow: hidden;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  .logo:hover { background-color: var(--or-clair); transform: scale(1.02); }
  .logo span { display: none; }
  .nav-links { display: flex; gap: 35px; list-style: none; }
  .nav-links a {
    color: white; text-decoration: none;
    font-size: 0.9rem; font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s;
  }
  .nav-links a::after {
    content: ''; position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 1px;
    background: var(--or);
    transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--or-clair); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    background: var(--or);
    color: var(--bleu-petrole) !important;
    padding: 10px 24px;
    border-radius: 2px;
    font-weight: 600;
    transition: all 0.3s;
  }
  .nav-cta:hover { background: var(--or-clair); transform: translateY(-2px); }
  .nav-cta::after { display: none; }
  .menu-toggle { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

  /* HERO */
  .hero {
    height: 100vh; min-height: 700px;
    position: relative;
    overflow: hidden;
    display: flex; align-items: center;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0a2540 0%, #1a4060 50%, #2e7a9e 100%);
    z-index: 1;
    overflow: hidden;
  }
  .hero-video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    object-fit: cover;
    transform: translate(-50%, calc(-50% + var(--parallax-y, 0px))) scale(1.05);
    z-index: 1;
    opacity: 0.55;
    will-change: transform;
  }
  .hero-bg-grain {
    position: absolute; inset: 0;
    z-index: 2;
    background: linear-gradient(180deg,
      rgba(10,37,64,0.55) 0%,
      rgba(10,37,64,0.35) 35%,
      rgba(10,37,64,0.55) 70%,
      rgba(10,37,64,0.85) 100%);
    pointer-events: none;
  }
  .hero-bg-grain::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%,
      transparent 30%, rgba(10,37,64,0.4) 100%);
  }
  .hero-content {
    position: relative; z-index: 3;
    max-width: 1400px; margin: 0 auto;
    padding: 0 60px;
    display: grid; grid-template-columns: 1.3fr 1fr;
    gap: 60px; align-items: center;
    width: 100%;
  }
  .hero-text {
    color: white;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px;
    background: rgba(201, 169, 110, 0.15);
    border: 1px solid rgba(201, 169, 110, 0.4);
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--or-clair);
    margin-bottom: 30px;
    text-transform: uppercase;
  }
  .hero-badge::before {
    content: ''; width: 6px; height: 6px;
    background: var(--or); border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(201,170,116,0.7); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(201,170,116,0); }
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -1px;
  }
  .hero h1 .accent { font-style: italic; }
  .hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin-bottom: 35px;
    font-weight: 300;
    line-height: 1.7;
  }
  .hero-expertises {
    display: flex; flex-wrap: wrap; gap: 12px;
    margin-bottom: 45px;
  }
  .expertise-tag {
    padding: 8px 16px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 2px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.92);
  }
  .hero-cta {
    display: flex; gap: 20px; flex-wrap: wrap;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 36px;
    background: var(--or);
    color: var(--bleu-petrole);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 2px;
    transition: all 0.4s;
    border: none; cursor: pointer;
    font-size: 0.95rem;
    text-transform: uppercase;
  }
  .btn-primary:hover {
    background: var(--or-clair);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 110, 0.3);
  }
  .btn-primary svg { transition: transform 0.3s; }
  .btn-primary:hover svg { transform: translateX(5px); }
  .btn-secondary {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 36px;
    background: transparent;
    color: white;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 2px;
    transition: all 0.3s;
    font-size: 0.95rem;
    text-transform: uppercase;
  }
  .btn-secondary:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
  }

  .hero-portrait {
    position: relative;
  }
  .portrait-frame {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin-left: auto;
    aspect-ratio: 3/4;
  }
  .portrait-img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    position: relative; z-index: 2;
  }
  .portrait-frame::before {
    content: '';
    position: absolute;
    top: -20px; left: -20px;
    width: 100%; height: 100%;
    border: 2px solid var(--or);
    border-radius: 2px;
    z-index: 1;
  }
  .portrait-frame::after {
    content: '';
    position: absolute;
    bottom: -20px; right: -20px;
    width: 80px; height: 80px;
    background: var(--or);
    z-index: 0;
  }

  .hero-scroll {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    animation: bounce 2s infinite;
  }
  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
  }
  @keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
  }
  @keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
  }

  /* SECTIONS */
  section { padding: 120px 60px; }
  .container { max-width: 1300px; margin: 0 auto; }
  .section-label {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--bleu-mediterranee);
    font-weight: 600;
    margin-bottom: 20px;
  }
  .section-label::before {
    content: ''; width: 40px; height: 1px;
    background: var(--or);
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--bleu-petrole);
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
  }
  .section-title .accent { font-style: italic; }
  .section-intro {
    font-size: 1.1rem;
    color: var(--texte-clair);
    max-width: 700px;
    line-height: 1.8;
  }

  /* STATS BAND */
  .stats-band {
    background: var(--bleu-petrole);
    padding: 60px 60px;
    color: white;
    position: relative;
    overflow: hidden;
  }
  .stats-band::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 300px; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201,170,116,0.1));
  }
  .stats-grid {
    max-width: 1300px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative; z-index: 2;
  }
  .stat-item {
    text-align: center;
    position: relative;
  }
  .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px; top: 20%;
    width: 1px; height: 60%;
    background: rgba(255,255,255,0.15);
  }
  .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--or-clair);
    line-height: 1;
    margin-bottom: 8px;
  }
  .stat-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
  }

  /* ════════════════════════════════════════════════════════════════
     ABOUT — "Hello there" composition (Scofield-inspired)
     ════════════════════════════════════════════════════════════════ */
  .about {
    background: linear-gradient(180deg,
      #f7f5f0 0%,
      #fbf8f2 30%,
      #fffefb 65%,
      #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 110px 60px 100px;
  }
  .about::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 70%;
    background: radial-gradient(ellipse 70% 90% at 50% 100%,
      rgba(201,170,116,0.16) 0%,
      rgba(201,170,116,0.04) 50%,
      transparent 80%);
    pointer-events: none;
    z-index: 1;
  }
  .about-container {
    position: relative; z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
  }

  /* Floating tags row at top */
  .about-tags {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 50px;
    flex-wrap: wrap;
  }
  .about-tag {
    padding: 11px 22px;
    border: 1px solid rgba(10,37,64,0.12);
    background: rgba(255,255,255,0.7);
    border-radius: 100px;
    font-size: 0.78rem;
    color: var(--bleu-petrole);
    font-weight: 500;
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: all 0.3s ease;
  }
  .about-tag:hover {
    background: white;
    border-color: rgba(201,170,116,0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10,37,64,0.06);
  }

  /* Greeting + Portrait stack */
  .about-hello {
    position: relative;
    text-align: center;
    margin: 30px 0 0;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about-greeting {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(80px, 14vw, 220px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -5px;
    white-space: nowrap;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -55%);
    z-index: 1;
    color: rgba(10,37,64,0.10);
    user-select: none;
  }
  .about-greeting em {
    font-style: italic;
    color: rgba(201,170,116,0.32);
  }
  .about-greeting .ag-dot {
    color: var(--or);
    opacity: 0.6;
    font-size: 0.5em;
    vertical-align: middle;
    margin: 0 0.3em;
  }

  .about-portrait {
    position: relative;
    z-index: 2;
    width: clamp(280px, 32vw, 460px);
    aspect-ratio: 4 / 5;
    -webkit-mask-image: radial-gradient(ellipse 72% 78% at 50% 38%,
      black 48%, rgba(0,0,0,0.7) 65%, transparent 95%);
    mask-image: radial-gradient(ellipse 72% 78% at 50% 38%,
      black 48%, rgba(0,0,0,0.7) 65%, transparent 95%);
  }
  .about-portrait img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 22%;
  }
  /* Soft gold disc behind the portrait */
  .about-portrait::before {
    content: '';
    position: absolute;
    inset: 8% 4% 35% 4%;
    background: radial-gradient(circle at 50% 40%,
      rgba(216,196,156,0.55) 0%,
      rgba(216,196,156,0.18) 40%,
      transparent 70%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(20px);
  }

  /* Bottom: name (left) + bio (right) */
  .about-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(10,37,64,0.08);
  }
  .about-name-block {
    line-height: 0.88;
    color: var(--bleu-petrole);
  }
  .about-name-block .ab-kicker {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--or);
    font-weight: 600;
    margin-bottom: 18px;
    line-height: 1.4;
  }
  .about-name-block h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 6.5vw, 96px);
    font-weight: 700;
    letter-spacing: -3px;
    line-height: 0.92;
    color: var(--bleu-petrole);
  }
  .about-name-block h2 .lite {
    font-weight: 500;
    color: rgba(10,37,64,0.5);
  }
  .about-name-block .ab-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--bleu-mediterranee);
    font-weight: 600;
    margin-top: 22px;
  }

  .about-bio {
    padding-bottom: 12px;
  }
  .about-bio p {
    color: var(--texte-clair);
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: 28px;
    max-width: 480px;
  }
  .about-bio p strong {
    color: var(--bleu-petrole);
    font-weight: 600;
  }
  .btn-about {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: var(--bleu-petrole);
    color: white;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.8rem;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all 0.35s ease;
    border: 1px solid var(--bleu-petrole);
  }
  .btn-about svg { transition: transform 0.3s; }
  .btn-about:hover {
    background: var(--or);
    border-color: var(--or);
    color: var(--bleu-petrole);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(201,170,116,0.3);
  }
  .btn-about:hover svg { transform: translateX(4px); }

  @media (max-width: 1024px) {
    .about-tags { justify-content: center; }
    .about-bottom { grid-template-columns: 1fr; gap: 40px; align-items: start; }
  }
  @media (max-width: 768px) {
    .about { padding: 70px 25px 60px; }
    .about-tags { gap: 8px; margin-bottom: 30px; }
    .about-tag { font-size: 0.7rem; padding: 8px 14px; }
    .about-hello { min-height: 380px; margin: 10px 0 0; }
    .about-greeting { letter-spacing: -2px; }
    .about-bottom { padding-top: 30px; margin-top: 20px; gap: 30px; }
    .about-name-block h2 { letter-spacing: -1px; }
  }

  /* EXPERTISES */
  .expertises {
    background: linear-gradient(180deg, var(--blanc-casse) 0%, white 100%);
  }
  .expertises-header {
    text-align: center;
    margin-bottom: 80px;
  }
  .expertises-header .section-label { justify-content: center; }
  .expertises-header .section-label::before,
  .expertises-header .section-label::after {
    content: ''; width: 40px; height: 1px;
    background: var(--or);
  }
  .expertises-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  .expertise-card {
    background: white;
    padding: 40px 35px;
    border: 1px solid var(--gris-clair);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  .expertise-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--or);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
  }
  .expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(10,37,64,0.12);
    border-color: transparent;
  }
  .expertise-card:hover::before { transform: scaleX(1); }
  .expertise-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: var(--or);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }
  .expertise-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--bleu-petrole), var(--bleu-mediterranee));
    color: var(--or-clair);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s;
  }
  .expertise-card:hover .expertise-icon {
    transform: rotate(-5deg) scale(1.1);
  }
  .expertise-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--bleu-petrole);
    margin-bottom: 8px;
    font-weight: 700;
  }
  .expertise-company {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bleu-mediterranee);
    font-weight: 600;
    margin-bottom: 18px;
  }
  .expertise-card p {
    color: var(--texte-clair);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  .expertise-tags {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gris-clair);
  }
  .expertise-tags span {
    font-size: 0.75rem;
    padding: 4px 12px;
    background: var(--blanc-casse);
    color: var(--bleu-mediterranee);
    border-radius: 50px;
    font-weight: 500;
  }

  /* WHY ME */
  .why {
    background: var(--bleu-petrole);
    color: white;
    position: relative;
    overflow: hidden;
  }
  /* Make why-card position:relative for the orb */
  .why-card { position: relative; }
  .why::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201,170,116,0.15), transparent);
    border-radius: 50%;
  }
  .why::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(46,122,158,0.2), transparent);
    border-radius: 50%;
  }
  .why .container { position: relative; z-index: 2; }
  .why-header { text-align: center; margin-bottom: 70px; }
  .why .section-label { color: var(--or-clair); justify-content: center; }
  .why .section-label::before,
  .why .section-label::after {
    content: ''; width: 40px; height: 1px;
    background: var(--or);
  }
  .why .section-title { color: white; }
  .why .section-title .accent { }
  .why .section-intro { color: rgba(255,255,255,0.75); margin: 0 auto; text-align: center; }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  .why-card {
    text-align: center;
    padding: 35px 25px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    transition: all 0.4s;
  }
  .why-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--or);
    transform: translateY(-5px);
  }
  .why-icon {
    width: 70px; height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--or), var(--or-clair));
    color: var(--bleu-petrole);
    display: flex; align-items: center; justify-content: center;
    border-radius: 2px;
  }
  .why-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: white;
  }
  .why-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
  }

  /* GALLERY */
  .gallery {
    background: var(--blanc-casse);
  }
  .gallery-header {
    text-align: center;
    margin-bottom: 60px;
  }
  .gallery-header .section-label { justify-content: center; }
  .gallery-header .section-label::before,
  .gallery-header .section-label::after {
    content: ''; width: 40px; height: 1px;
    background: var(--or);
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 280px 280px;
    gap: 15px;
  }
  .gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }
  .gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
  }
  .gallery-item:hover img { transform: scale(1.08); }
  .gallery-item::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(10,37,64,0.7), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
  }
  .gallery-item:hover::after { opacity: 1; }
  .gallery-caption {
    position: absolute;
    bottom: 20px; left: 20px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s;
    z-index: 2;
  }
  .gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
  }
  .gallery-item.large { grid-column: span 2; grid-row: span 2; }
  .gallery-item.tall { grid-row: span 2; }

  /* FMDB SECTION */
  .fmdb {
    background: white;
    position: relative;
  }
  .fmdb-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .fmdb-content h2 { margin-bottom: 25px; }
  .fmdb-content > p {
    color: var(--texte-clair);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
  }
  .fmdb-features {
    display: flex; flex-direction: column; gap: 18px;
    margin-bottom: 40px;
  }
  .fmdb-feature {
    display: flex; gap: 15px;
    align-items: flex-start;
  }
  .fmdb-check {
    width: 24px; height: 24px;
    background: var(--or);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 0.7rem;
  }
  .fmdb-feature span {
    color: var(--bleu-petrole);
    font-weight: 500;
    padding-top: 2px;
  }
  .fmdb-visual {
    position: relative;
    aspect-ratio: 1;
  }
  .fmdb-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 2px;
  }
  .fmdb-visual::before {
    content: 'FMDB';
    position: absolute;
    top: -40px; left: -40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 9rem;
    font-weight: 900;
    color: var(--gris-clair);
    z-index: -1;
    letter-spacing: -5px;
  }
  .fmdb-badge {
    position: absolute;
    top: 30px; right: 30px;
    background: var(--bleu-petrole);
    color: white;
    padding: 15px 20px;
    border-left: 3px solid var(--or);
  }
  .fmdb-badge strong {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--or-clair);
    margin-bottom: 5px;
  }
  .fmdb-badge span {
    font-size: 1rem;
    font-weight: 600;
  }

  /* CTA BAND */
  .cta-band {
    background: linear-gradient(135deg, var(--bleu-petrole), var(--bleu-profond));
    padding: 80px 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
  }
  .cta-band::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=1920&q=80');
    background-size: cover;
    opacity: 0.08;
  }
  .cta-band > * { position: relative; z-index: 2; }
  .cta-band h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 20px;
  }
  .cta-band p {
    max-width: 600px;
    margin: 0 auto 35px;
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
  }

  /* CONTACT */
  .contact {
    background: var(--blanc-casse);
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
  }
  .contact-info h2 { margin-bottom: 25px; }
  .contact-info > p {
    color: var(--texte-clair);
    margin-bottom: 40px;
    line-height: 1.8;
  }
  .contact-items {
    display: flex; flex-direction: column; gap: 25px;
  }
  .contact-item {
    display: flex; gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-left: 3px solid var(--or);
    transition: all 0.3s;
  }
  .contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(10,37,64,0.08);
  }
  .contact-icon {
    width: 44px; height: 44px;
    background: var(--bleu-petrole);
    color: var(--or-clair);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    border-radius: 2px;
  }
  .contact-item strong {
    display: block;
    color: var(--bleu-petrole);
    font-size: 0.95rem;
    margin-bottom: 4px;
  }
  .contact-item span, .contact-item a {
    color: var(--texte-clair);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-item a:hover { color: var(--or); }

  .contact-form {
    background: white;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(10,37,64,0.08);
  }
  .form-group {
    margin-bottom: 25px;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .form-group label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--bleu-petrole);
    margin-bottom: 8px;
    font-weight: 600;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gris-clair);
    background: var(--blanc-casse);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--bleu-petrole);
    transition: all 0.3s;
    border-radius: 2px;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--or);
    background: white;
  }
  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }
  .form-submit {
    width: 100%;
    padding: 18px;
    background: var(--bleu-petrole);
    color: white;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .form-submit::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--or);
    transition: left 0.4s;
    z-index: 0;
  }
  .form-submit:hover::before { left: 0; }
  .form-submit span { position: relative; z-index: 1; }
  .form-submit:hover { color: var(--bleu-petrole); }

  /* FOOTER */
  footer {
    background: var(--bleu-petrole);
    color: rgba(255,255,255,0.6);
    padding: 60px 60px 30px;
  }
  .footer-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
  }
  .footer-brand .logo {
    width: 240px;
    height: 150px;
    margin-bottom: 24px;
    display: block;
  }
  .footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
  }
  .footer-col h4 {
    color: white;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 12px; }
  .footer-col a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-col a:hover { color: var(--or); }
  .footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
  }
  .footer-bottom a { color: var(--or); text-decoration: none; }

  /* ── Footer Hero SVG ──────────────────────────────────────────────── */
  .footer-hero {
    background: var(--bleu-petrole);
    padding: 90px 60px 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .footer-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 90% 70% at 50% 130%,
      rgba(201,170,116,0.09) 0%, transparent 60%);
    pointer-events: none;
  }
  .footer-hero-kicker {
    font-size: 0.68rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 50px;
    position: relative; z-index: 2;
    opacity: 0.85;
  }
  .footer-svg-wrap {
    position: relative; z-index: 2;
    width: min(100%, 1100px);
    margin: 0 auto 20px;
    cursor: crosshair;
  }
  #footer-text-svg { overflow: visible; display: block; }

  .ft-outline { opacity: 1; transition: opacity 0.4s; }
  .footer-svg-wrap:hover .ft-outline { opacity: 0.25; }

  .ft-draw-text {
    stroke-dasharray: 5000;
    stroke-dashoffset: 5000;
    fill: transparent;
  }
  .ft-draw-text.animated {
    animation: ftDraw 3.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
  }
  @keyframes ftDraw { to { stroke-dashoffset: 0; } }

  .footer-hero-sub {
    position: relative; z-index: 2;
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-top: 16px;
  }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-portrait { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2)::after { display: none; }
    .about-grid, .contact-grid, .fmdb-grid { grid-template-columns: 1fr; gap: 50px; }
    .expertises-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 250px; }
    .gallery-item.large, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
  }
  @media (max-width: 768px) {
    nav { padding: 15px 25px; }
    nav.scrolled { padding: 12px 25px; }
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    section { padding: 80px 25px; }
    .stats-band { padding: 50px 25px; }
    .cta-band { padding: 60px 25px; }
    footer { padding: 50px 25px 25px; }
    .stats-grid { grid-template-columns: 1fr; gap: 30px; }
    .stat-item::after { display: none !important; }
    .expertises-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 35px; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 30px 25px; }
    .about-quote { position: static; max-width: 100%; margin-top: 20px; }
    .about-values { grid-template-columns: 1fr; }
    .hero-content { padding: 0 25px; }
    .hero-cta { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  }

  /* ── Scroll progress bar ───────────────────────────────────────── */
  #scroll-progress {
    position: fixed; top: 0; left: 0;
    height: 2px; width: 0%;
    background: linear-gradient(90deg, var(--or), var(--or-clair), var(--or));
    background-size: 200% auto;
    animation: shiny-sweep 3s linear infinite;
    z-index: 999;
    box-shadow: 0 0 12px rgba(201,170,116,0.6);
    transition: width 0.12s linear;
    pointer-events: none;
  }

  /* ── Reveals ────────────────────────────────────────────────────── */
  .reveal {
    opacity: 0;
    transform: translateY(44px);
    transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1),
                transform 0.85s cubic-bezier(0.16,1,0.3,1);
  }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
                transform 0.9s cubic-bezier(0.16,1,0.3,1);
  }
  .reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
                transform 0.9s cubic-bezier(0.16,1,0.3,1);
  }
  .reveal-scale {
    opacity: 0;
    transform: scale(0.88) translateY(18px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1),
                transform 0.8s cubic-bezier(0.16,1,0.3,1);
  }
  .reveal-left.visible,
  .reveal-right.visible,
  .reveal-scale.visible { opacity: 1; transform: none; }

  /* Hero bg parallax hint */
  .hero-video { will-change: transform; }

  /* Hero text centered for full-bleed video bg */
  .hero-content.hero-content-centered {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 1100px;
  }
  .hero-content.hero-content-centered .hero-text { max-width: 880px; margin: 0 auto; }
  .hero-content.hero-content-centered .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-content.hero-content-centered .hero-expertises,
  .hero-content.hero-content-centered .hero-cta { justify-content: center; }

  /* ── Section dots navigator ─────────────────────────────────────── */
  .section-dots {
    position: fixed;
    right: 26px; top: 50%;
    transform: translateY(-50%);
    z-index: 90;
    display: flex; flex-direction: column; gap: 14px;
  }
  .section-dot {
    position: relative;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: 1.5px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.45s cubic-bezier(0.16,1,0.3,1);
    padding: 0; outline: none;
  }
  .section-dot::after {
    content: attr(data-label);
    position: absolute;
    right: 18px; top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem; letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.95);
    background: rgba(10,37,64,0.92);
    padding: 4px 10px; border-radius: 2px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.25s ease;
  }
  .section-dot:hover::after { opacity: 1; }
  .section-dot.active {
    background: var(--or);
    border-color: var(--or);
    transform: scale(1.6);
    box-shadow: 0 0 14px rgba(201,170,116,0.7);
  }
  @media (max-width: 768px) { .section-dots { display: none; } }

  /* ── Word-by-word reveal (hero h1) ──────────────────────────────── */
  .word-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    line-height: inherit;
  }
  .word-anim {
    display: inline-block;
    transform: translateY(110%) rotate(4deg);
    opacity: 0;
    will-change: transform, opacity;
    transition: transform 0.75s cubic-bezier(0.16,1,0.3,1),
                opacity 0.55s ease;
  }
  .word-anim.in {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }

  /* ── Cursor glow ────────────────────────────────────────────────── */
  #cursor-glow {
    position: fixed;
    left: 0; top: 0;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(201,170,116,0.07), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transform: translate(-9999px, -9999px);
    will-change: transform;
    mix-blend-mode: screen;
  }
  @media (pointer: coarse) { #cursor-glow { display: none; } }

  /* ── MagicCard Orb Effect ─────────────────────────────────────────
     A radial glow tracks the cursor inside each card.
     Uses CSS custom props --orb-x / --orb-y updated by JS.          */
  .expertise-card,
  .why-card {
    --orb-x: 50%;
    --orb-y: 50%;
    --orb-opacity: 0;
  }

  /* Orb on light cards (expertise) */
  .expertise-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
      380px circle at var(--orb-x) var(--orb-y),
      rgba(201,170,116,0.22) 0%,
      rgba(201,170,116,0.06) 40%,
      transparent 70%
    );
    opacity: var(--orb-opacity);
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
    border-radius: inherit;
  }

  /* Orb on dark cards (why) */
  .why-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
      320px circle at var(--orb-x) var(--orb-y),
      rgba(230,215,184,0.18) 0%,
      rgba(46,122,158,0.10) 45%,
      transparent 70%
    );
    opacity: var(--orb-opacity);
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
    border-radius: inherit;
  }

  /* Keep card inner content above the orb */
  .expertise-card > *,
  .why-card > * {
    position: relative;
    z-index: 1;
  }
  /* ─────────────────────────────────────────────────────────────────── */

  /* ── Animated Shiny Text ────────────────────────────────────────── */
  @keyframes shiny-sweep {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
  }

  /* Variant DARK — for headings on light backgrounds (section-title .accent) */
  .shiny-dark {
    background: linear-gradient(
      90deg,
      var(--or)       0%,
      var(--or)       35%,
      #f5e4b0         45%,
      #fffaf0         50%,
      #f5e4b0         55%,
      var(--or)       65%,
      var(--or)       100%
    );
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shiny-sweep 4s linear infinite;
  }

  /* Variant LIGHT — for headings on dark/blue backgrounds (hero, why, cta) */
  .shiny-light {
    background: linear-gradient(
      90deg,
      var(--or-clair)  0%,
      var(--or-clair)  35%,
      #ffffff          45%,
      #fffdf5          50%,
      #ffffff          55%,
      var(--or-clair)  65%,
      var(--or-clair)  100%
    );
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shiny-sweep 4s linear infinite;
  }

  /* Stats numbers get a richer gold sweep */
  .shiny-stat {
    background: linear-gradient(
      90deg,
      var(--or-clair)  0%,
      var(--or-clair)  30%,
      #ffffff          44%,
      #fffef8          50%,
      #ffffff          56%,
      var(--or-clair)  70%,
      var(--or-clair)  100%
    );
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shiny-sweep 3.5s linear infinite;
    display: inline-block;
  }
  /* ───────────────────────────────────────────────────────────────── */
