    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--fg); line-height: 1.6; }

   
    /* COMPONENTS */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.625rem;
      padding: 0.8rem 2rem;
      border-radius: 9999px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border: none;
      cursor: pointer;
      font-size: 1rem;
    }
    .btn-sm {
      padding: 0.625rem 1.5rem;
      font-size: 0.875rem;
    }
    .btn-primary {
      background: var(--accent);
      color: #FFFFFF;
      box-shadow: 0 4px 12px rgba(92, 134, 255, 0.25);
    }
    .btn-primary:hover {
      background: #4a74e8;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(92, 134, 255, 0.35);
    }
    .btn-soft {
      background: var(--accent-soft);
      color: var(--accent);
    }
    .btn-soft:hover {
      background: #dbe8ff;
      transform: translateY(-2px);
    }
    .btn-outline {
      background: transparent;
      border: 2px solid var(--border);
      color: var(--fg);
    }
    .btn-outline:hover {
      border-color: var(--accent);
      color: var(--accent);
      background: rgba(92, 134, 255, 0.02);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.8fr 1fr;
      align-items: center;
    }
    @media (max-width: 991px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
    }

    .card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1.5rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px var(--shadow);
    }

    .photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: inherit;
      transition: transform 0.3s ease;
    }
    .photo:hover { transform: scale(1.05); }



    .deco-line {
      width: 3rem;
      height: 2px;
      background: var(--border);
    }
    .deco-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--warm);
    }

    .icon-box {
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 1rem;
      flex-shrink: 0;
    }

    /* NAVIGATION */
    nav a {
      position: relative;
      text-decoration: none;
      color: var(--muted);
      transition: color 0.2s;
    }
    nav a:hover { color: var(--fg); }
    nav a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.3s ease;
    }
    nav a:hover::after { width: 100%; }

    /* HEADER & LOGO */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(251,249,247,0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      height: 80px;
      display: flex;
      align-items: center;
    }
    .logo-container {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      color: var(--fg);
    }
    .logo-img {
      width: 48px;
      height: 48px;
      object-fit: contain;
      border-radius: 0.5rem;
    }
    .logo-text {
      font-family: 'Fraunces', serif;
      font-weight: 700;
      font-size: 1.25rem;
    }

    /* CONTAINER SPACING */
    .container {
      max-width: 1300px;
      margin: 0 auto;
      padding-left: 2rem;
      padding-right: 2rem;
    }

    @media (min-width: 992px) {
      .container {
        padding-left: 5rem;
        padding-right: 5rem;
      }
    }

    @media (max-width: 768px) {
      .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
      }
    }

    /* CTA ENHANCEMENT */
    .btn-cta-main {
      background: var(--accent);
      color: white !important;
      padding: 1rem 2.5rem;
      box-shadow: 0 10px 20px rgba(0,85,255,0.2);
      border: 2px solid var(--accent);
    }
    .btn-cta-main:hover {
      background: #0044DD;
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(0,85,255,0.3);
    }

    /* TEXT ONLY TAGS (NO BUTTON STYLE) */
    .tag-bold {
      font-weight: 700;
      color: var(--fg);
      text-decoration: none;
    }
    .tag-accent {
      font-weight: 700;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .hero-img-small {
      max-width: 350px; /* Taille drastiquement réduite */
      margin-left: auto;
    }

    /* SECTIONS */
    .section { padding: 6rem 0; }
    .section-pt { padding-top: 8rem; }
    .section-pb { padding-bottom: 4rem; }


    /* ANIMATIONS */
    @keyframes float {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(30px, -20px) scale(1.05); }
      66% { transform: translate(-20px, 20px) scale(0.95); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .delay1 { transition-delay: 0.1s; }
    .delay2 { transition-delay: 0.15s; }
    .delay3 { transition-delay: 0.2s; }
    .delay4 { transition-delay: 0.25s; }
    .delay5 { transition-delay: 0.3s; }
    .delay6 { transition-delay: 0.35s; }

    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
      .blob { animation: none; }
      html { scroll-behavior: auto; }
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .md-dn { display: none; }
      .md-db { display: block; }
      .md-df { display: flex; }
      .md-fdc { flex-direction: column; }
      .md-tac { text-align: center; }
      .md-tal { text-align: left; }
      .md-tar { text-align: right; }
      .md-aic { align-items: center; }
      .gtc-4 { grid-template-columns: 1fr; }
      .gc2 { grid-column: auto; }
      .ar-21 { aspect-ratio: 1; }
    }

    @media (min-width: 769px) and (max-width: 1024px) {
      .gtc-4 { grid-template-columns: repeat(2, 1fr); }
    }

    @media (min-width: 769px) {
      .lg-dn { display: none; }
      .lg-df { display: flex; }
      .lg-fdr { flex-direction: row; }
      .lg-gtc-2 { grid-template-columns: repeat(2, 1fr); }
    }

    /* ASPECT RATIOS */
    .ar-1 { aspect-ratio: 1; }
    .ar-45 { aspect-ratio: 4/5; }
    .ar-21 { aspect-ratio: 2/1; }

    /* FOOTER BORDER */
    .footer-border { border-color: rgba(255,255,255,0.1); }
    .bg-white10 { background: rgba(255,255,255,0.1); }
    .w32 { width: 32px; }
    .h32 { height: 32px; }
    .mw300 { max-width: 300px; }
    .h-c-accent:hover { color: var(--accent); }

    /* FOCUS */
    .btn:focus-visible, a:focus-visible {
      outline: 3px solid var(--accent);
      outline-offset: 2px;
    }