    /* ===============================================
       ANIMATIONS & TRANSITIONS
       =============================================== */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-20px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* ===============================================
       HERO ANIMATIONS
       =============================================== */
    .hero-animate-1 {
      animation: fadeUp 1s ease-out 0.2s both;
    }

    .hero-animate-2 {
      animation: fadeUp 1s ease-out 0.4s both;
    }

    .hero-animate-3 {
      animation: fadeUp 1s ease-out 0.6s both;
    }

    .hero-animate-4 {
      animation: fadeUp 1s ease-out 0.8s both;
    }

    #accueil .hero-main-title {
      line-height: 1.50 !important;
      margin-bottom: 0 !important;
    }

    #accueil .hero-main-title span {
      display: block;
      margin: 0;
      padding: 0;
    }

    #accueil .hero-kicker {
      margin-top: 0 !important;
      font-size: 1.25rem;
      line-height: 1.2;
    }

    #accueil .hero-main-subtitle {
      margin-top: 0 !important;
      font-size: 1.2rem;
      line-height: 1.35;
    }

    @media (min-width: 640px) {
      #accueil .hero-kicker {
        font-size: 1.75rem;
      }

      #accueil .hero-main-subtitle {
        font-size: 1.45rem;
      }
    }

    /* ===============================================
       DECORATIVE ELEMENTS
       =============================================== */
    .gold-line {
      width: 48px;
      height: 2.5px;
      background: linear-gradient(90deg, transparent, #C6A15B, transparent);
      margin: 0 auto;
    }

    .grain-texture {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      opacity: 0.02;
      z-index: 9999;
    }

    .hero-bg {
      background-attachment: fixed;
      background-position: center 42%;
      background-size: cover;
    }

    /* ===============================================
       SCROLL REVEAL ANIMATION
       =============================================== */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Alpine and text utility fallbacks */
    [x-cloak] {
      display: none !important;
    }

    .line-clamp-2 {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .line-clamp-3 {
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* ===============================================
       FOCUS & ACCESSIBILITY
       =============================================== */
    :focus-visible {
      outline: 2px solid #167C82;
      outline-offset: 3px;
      border-radius: 2px;
    }

    /* ===============================================
       NAVIGATION STYLING
       =============================================== */
    .nav-link {
      position: relative;
      transition: color 0.3s ease;
      font-weight: 500;
      font-size: 0.875rem;
      letter-spacing: 0.05em;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: #167C82;
      transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .burger-line {
      transition: all 0.3s ease;
    }

    /* ===============================================
       RESPONSIVE DESIGN
       =============================================== */
    @media (max-width: 768px) {
      .hero-bg {
        background-attachment: scroll !important;
        background-position: center 34%;
        background-size: contain;
      }
      
      .hero-animate-2 {
        /* Keep responsive sizing for mobile */
      }
    }

    /* ===============================================
       TYPOGRAPHY
       =============================================== */
    body {
      font-weight: 400;
      line-height: 1.6;
    }

    h1, h2, h3, h4, h5, h6 {
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.01em;
    }

    /* ===============================================
       KICKERS & LABELS — monospace technical accents
       =============================================== */
    .kicker {
      font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-weight: 500;
    }

    /* ===============================================
       BUTTONS - CONSISTENT STYLING
       =============================================== */
    button, [role="button"], a[class*="btn"] {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      font-weight: 600;
      font-size: inherit;
    }

    button:hover:not(:disabled),
    [role="button"]:hover:not(:disabled),
    a[class*="btn"]:hover {
      transform: translateY(-2px);
    }

    button:active:not(:disabled),
    [role="button"]:active:not(:disabled),
    a[class*="btn"]:active {
      transform: translateY(0);
    }

    /* ===============================================
       FORM ELEMENTS - ENHANCED STYLING
       =============================================== */
    input, textarea, select {
      font-family: inherit;
      font-size: 1rem;
      line-height: 1.5;
    }

    input:focus, textarea:focus, select:focus {
      box-shadow: inset 0 0 0 3px rgba(22, 124, 130, 0.12);
    }

    /* ===============================================
       CARDS & CONTAINERS
       =============================================== */
    .card {
      border-radius: 0.5rem;
      background: white;
      transition: all 0.3s ease;
    }

    .card:hover {
      box-shadow: 0 20px 40px rgba(0, 33, 71, 0.08);
      transform: translateY(-4px);
    }

    /* ===============================================
       SPACING UTILITIES - CONSISTENT MARGINS
       =============================================== */
    section {
      scroll-margin-top: 80px;
    }

    /* ===============================================
       PRINT STYLES
       =============================================== */
    @media print {
      .grain-texture,
      header,
      footer,
      .no-print {
        display: none;
      }
    }
