﻿/* ========================================
       VARIABLES & RESET
    ======================================== */
    :root {
      /* Palette Coffee */
      --coffee-dark: #2C1810;
      --coffee-medium: #4A2C2A;
      --coffee-light: #6B4423;
      --cream: #F5E6D3;
      --cream-light: #FDF8F3;
      --espresso: #1A0F0A;
      --latte: #D4A574;
      --caramel: #C4813D;
      --steam: rgba(255, 255, 255, 0.8);
      
      /* Accent APRIUM */
      --accent: #C4813D;
      --accent-hover: #A66B2A;
      
      /* Neutrals */
      --text-dark: #1A0F0A;
      --text-medium: #4A2C2A;
      --text-light: #6B4423;
      --white: #FFFFFF;
      
      /* Spacing */
      --section-padding: 5rem 0;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text-dark);
      background: var(--cream-light);
      line-height: 1.6;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    h1, h2, h3, h4 {
      font-family: 'Fraunces', serif;
      font-weight: 600;
    }

    /* ========================================
       LOADER ANIMATION - Tasse fumante
    ======================================== */
    .page-loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--coffee-dark);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    .page-loader.hidden {
      opacity: 0;
      visibility: hidden;
    }

    .coffee-loader {
      position: relative;
      width: 120px;
      height: 140px;
    }

    /* Tasse */
    .cup {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 70px;
      background: var(--cream);
      border-radius: 0 0 40px 40px;
      overflow: hidden;
    }

    .cup::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, var(--latte) 0%, var(--coffee-light) 100%);
      animation: fillCup 2s ease-in-out infinite;
    }

    @keyframes fillCup {
      0%, 100% { transform: translateY(100%); }
      50% { transform: translateY(20%); }
    }

    /* Anse */
    .cup-handle {
      position: absolute;
      bottom: 15px;
      right: -20px;
      width: 25px;
      height: 35px;
      border: 6px solid var(--cream);
      border-left: none;
      border-radius: 0 20px 20px 0;
    }

    /* Fumée */
    .steam {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
    }

    .steam span {
      width: 8px;
      height: 30px;
      background: var(--steam);
      border-radius: 50%;
      animation: steam 2s ease-in-out infinite;
      opacity: 0;
    }

    .steam span:nth-child(1) { animation-delay: 0s; }
    .steam span:nth-child(2) { animation-delay: 0.3s; }
    .steam span:nth-child(3) { animation-delay: 0.6s; }

    @keyframes steam {
      0% {
        transform: translateY(0) scaleX(1);
        opacity: 0;
      }
      15% {
        opacity: 0.8;
      }
      50% {
        transform: translateY(-40px) scaleX(1.5);
        opacity: 0.4;
      }
      100% {
        transform: translateY(-80px) scaleX(2);
        opacity: 0;
      }
    }

    .loader-text {
      margin-top: 2rem;
      color: var(--cream);
      font-family: 'Fraunces', serif;
      font-size: 1.2rem;
      letter-spacing: 2px;
    }

    /* ========================================
       HEADER
    ======================================== */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(44, 24, 16, 0.95);
      backdrop-filter: blur(10px);
      z-index: 1000;
      padding: 1rem 0;
    }

    .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
    }

    /* Animation logo tasse */
    .logo-icon {
      position: relative;
      width: 45px;
      height: 50px;
    }

    .logo-cup {
      width: 35px;
      height: 30px;
      background: var(--cream);
      border-radius: 0 0 17px 17px;
      position: absolute;
      bottom: 0;
      left: 0;
    }

    .logo-cup::after {
      content: '';
      position: absolute;
      right: -10px;
      top: 5px;
      width: 12px;
      height: 18px;
      border: 3px solid var(--cream);
      border-left: none;
      border-radius: 0 10px 10px 0;
    }

    .logo-steam {
      position: absolute;
      top: 0;
      left: 8px;
      display: flex;
      gap: 4px;
    }

    .logo-steam span {
      width: 4px;
      height: 15px;
      background: var(--cream);
      border-radius: 50%;
      opacity: 0.7;
      animation: logoSteam 2s ease-in-out infinite;
    }

    .logo-steam span:nth-child(2) { animation-delay: 0.3s; }
    .logo-steam span:nth-child(3) { animation-delay: 0.6s; }

    @keyframes logoSteam {
      0%, 100% { transform: translateY(0); opacity: 0.3; }
      50% { transform: translateY(-5px); opacity: 0.8; }
    }

    .logo-text {
      display: flex;
      flex-direction: column;
    }

    .logo-title {
      color: var(--cream);
      font-family: 'Fraunces', serif;
      font-size: 1.4rem;
      font-weight: 600;
      line-height: 1;
    }

    .logo-subtitle {
      color: var(--latte);
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .header-nav {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    .header-nav a {
      color: var(--cream);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.3s ease;
    }

    .header-nav a:hover {
      color: var(--latte);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .btn-accent {
      background: var(--caramel);
      color: var(--white);
    }

    .btn-accent:hover {
      background: var(--accent-hover);
      transform: translateY(-2px);
    }

    .btn-outline {
      border: 2px solid var(--cream);
      color: var(--cream);
      background: transparent;
    }

    .btn-outline:hover {
      background: var(--cream);
      color: var(--coffee-dark);
    }

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

    /* Grains de café animés en arrière-plan */
    .coffee-beans {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      pointer-events: none;
    }

    .bean {
      position: absolute;
      width: 30px;
      height: 40px;
      background: var(--espresso);
      border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
      opacity: 0.1;
      animation: floatBean 20s linear infinite;
    }

    .bean::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 2px;
      height: 70%;
      background: var(--coffee-light);
      border-radius: 2px;
    }

    .bean:nth-child(1) { left: 10%; animation-delay: 0s; }
    .bean:nth-child(2) { left: 25%; animation-delay: -5s; width: 20px; height: 27px; }
    .bean:nth-child(3) { left: 40%; animation-delay: -10s; }
    .bean:nth-child(4) { left: 60%; animation-delay: -7s; width: 25px; height: 33px; }
    .bean:nth-child(5) { left: 75%; animation-delay: -3s; }
    .bean:nth-child(6) { left: 90%; animation-delay: -12s; width: 22px; height: 30px; }

    @keyframes floatBean {
      0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
      }
      10% {
        opacity: 0.1;
      }
      90% {
        opacity: 0.1;
      }
      100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
      }
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(196, 129, 61, 0.2);
      border: 1px solid var(--caramel);
      color: var(--latte);
      padding: 0.5rem 1rem;
      border-radius: 50px;
      font-size: 0.85rem;
      margin-bottom: 1.5rem;
    }

    .hero h1 {
      color: var(--cream);
      font-size: 3.5rem;
      line-height: 1.1;
      margin-bottom: 1.5rem;
    }

    .hero h1 .highlight {
      color: var(--caramel);
      position: relative;
    }

    .hero-text {
      color: var(--cream);
      opacity: 0.9;
      font-size: 1.2rem;
      margin-bottom: 2rem;
      max-width: 500px;
    }

    .hero-cta {
      display: flex;
      gap: 1rem;
      margin-bottom: 3rem;
    }

    .hero-stats {
      display: flex;
      gap: 3rem;
    }

    .stat {
      text-align: center;
    }

    .stat-value {
      color: var(--caramel);
      font-family: 'Fraunces', serif;
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1;
    }

    .stat-label {
      color: var(--cream);
      opacity: 0.7;
      font-size: 0.85rem;
      margin-top: 0.25rem;
    }

    /* Zone visuelle Hero - Placeholder pour animation IA */
    .hero-visual {
      position: relative;
    }

    .hero-image-placeholder {
      width: 100%;
      aspect-ratio: 4/3;
      background: linear-gradient(135deg, var(--coffee-light) 0%, var(--espresso) 100%);
      border-radius: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border: 2px dashed var(--latte);
      position: relative;
      overflow: hidden;
    }

    .hero-image-placeholder.is-photo {
      border: none;
      background: transparent;
      display: block;
    }

    .hero-image-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 20px;
    }

    /* Animation latte art simulée */
    .latte-art-animation {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 200px;
      height: 200px;
    }

    .latte-cup {
      width: 180px;
      height: 120px;
      background: var(--cream);
      border-radius: 0 0 90px 90px;
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      overflow: hidden;
    }

    .latte-surface {
      position: absolute;
      top: 10px;
      left: 10px;
      right: 10px;
      bottom: 30px;
      background: radial-gradient(ellipse at center, var(--cream) 0%, var(--latte) 50%, var(--coffee-light) 100%);
      border-radius: 50%;
    }

    /* Motif latte art animé */
    .latte-heart {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0);
      animation: drawHeart 3s ease-in-out infinite;
    }

    .latte-heart::before,
    .latte-heart::after {
      content: '';
      position: absolute;
      width: 30px;
      height: 50px;
      background: var(--cream);
      border-radius: 30px 30px 0 0;
    }

    .latte-heart::before {
      left: 15px;
      transform: rotate(-45deg);
      transform-origin: bottom right;
    }

    .latte-heart::after {
      left: 0;
      transform: rotate(45deg);
      transform-origin: bottom left;
    }

    @keyframes drawHeart {
      0%, 100% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
      20% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
      80% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    }

    .placeholder-text {
      color: var(--cream);
      text-align: center;
      padding: 1rem;
      position: relative;
      z-index: 2;
    }

    .placeholder-text span {
      display: block;
      font-size: 0.9rem;
      opacity: 0.7;
      margin-top: 0.5rem;
    }

    .hero-card {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: var(--white);
      padding: 1.5rem;
      border-radius: 16px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.3);
      max-width: 250px;
    }

    .hero-card-title {
      font-family: 'Fraunces', serif;
      font-weight: 600;
      color: var(--coffee-dark);
      margin-bottom: 0.5rem;
    }

    .hero-card-text {
      font-size: 0.9rem;
      color: var(--text-medium);
      margin-bottom: 0.75rem;
    }

    .hero-card-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: #22c55e;
      font-size: 0.85rem;
      font-weight: 500;
    }

    /* ========================================
       SECTIONS COMMUNES
    ======================================== */
    .section {
      padding: var(--section-padding);
    }

    .section-label {
      display: inline-block;
      background: var(--cream);
      color: var(--coffee-medium);
      padding: 0.4rem 1rem;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 1rem;
    }

    .section-title {
      font-size: 2.5rem;
      color: var(--coffee-dark);
      margin-bottom: 1rem;
    }

    .section-intro {
      font-size: 1.1rem;
      color: var(--text-medium);
      max-width: 600px;
    }

    /* ========================================
       EXPERTISE SECTION
    ======================================== */
    .expertise {
      background: var(--white);
    }

    .expertise-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .expertise-header .section-intro {
      margin: 0 auto;
    }

    .expertise-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .expertise-card {
      background: var(--cream-light);
      border-radius: 20px;
      padding: 2rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid transparent;
    }

    .expertise-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(74, 44, 42, 0.1);
      border-color: var(--latte);
    }

    .expertise-icon {
      width: 60px;
      height: 60px;
      background: var(--cream);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
    }

    .expertise-card h3 {
      font-size: 1.3rem;
      color: var(--coffee-dark);
      margin-bottom: 1rem;
    }

    .expertise-card p {
      color: var(--text-medium);
      font-size: 0.95rem;
      margin-bottom: 1.5rem;
    }

    .expertise-list {
      list-style: none;
      margin-bottom: 1.5rem;
    }

    .expertise-list li {
      padding: 0.5rem 0;
      padding-left: 1.5rem;
      position: relative;
      color: var(--text-medium);
      font-size: 0.9rem;
    }

    .expertise-list li::before {
      content: '☕';
      position: absolute;
      left: 0;
      font-size: 0.8rem;
    }

    .expertise-link {
      color: var(--caramel);
      text-decoration: none;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: gap 0.3s ease;
    }

    .expertise-link:hover {
      gap: 0.75rem;
    }

    /* ========================================
       FORMATIONS SECTION
    ======================================== */
    .formations {
      background: var(--cream-light);
    }

    .formations-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .formations-header .section-intro {
      margin: 0 auto;
    }

    .formations-tabs {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 3rem;
    }

    .tab-btn {
      padding: 0.75rem 1.5rem;
      border: 2px solid var(--coffee-medium);
      background: transparent;
      color: var(--coffee-medium);
      border-radius: 50px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .tab-btn.active,
    .tab-btn:hover {
      background: var(--coffee-medium);
      color: var(--white);
    }

    .carousel-section {
      margin-bottom: 3rem;
    }

    .carousel-section:last-child {
      margin-bottom: 0;
    }

    .carousel-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .carousel-title {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 1.3rem;
      color: var(--coffee-dark);
    }

    .carousel-title-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: var(--cream);
      font-size: 1.2rem;
    }

    .carousel-nav {
      display: flex;
      gap: 0.5rem;
    }

    .carousel-btn {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid var(--coffee-light);
      background: var(--white);
      color: var(--coffee-medium);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .carousel-btn:hover:not(:disabled) {
      background: var(--coffee-medium);
      color: var(--white);
      border-color: var(--coffee-medium);
    }

    .carousel-btn:disabled {
      opacity: 0.4;
      cursor: not-allowed;
    }

    .carousel-track {
      display: flex;
      flex-wrap: nowrap;
      gap: 1.5rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding: 0.25rem 0.25rem 0.5rem;
      align-items: stretch;
    }

    .carousel-track::-webkit-scrollbar {
      display: none;
    }

    .carousel-track .formation-card {
      flex: 0 0 clamp(320px, calc((100% - 3rem) / 3), 390px);
      min-width: 0;
      scroll-snap-align: start;
      display: flex;
      flex-direction: column;
    }

    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1.25rem;
    }

    .carousel-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: none;
      background: var(--coffee-light);
      cursor: pointer;
      transition: all 0.3s ease;
      padding: 0;
    }

    .carousel-dot.active {
      background: var(--caramel);
      transform: scale(1.2);
    }

    .formation-card {
      background: var(--white);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .formation-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(74, 44, 42, 0.15);
    }

    .formation-header {
      padding: 2rem 2rem 1rem;
    }

    .formation-category {
      display: inline-block;
      background: var(--cream);
      color: var(--coffee-medium);
      padding: 0.3rem 0.75rem;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .formation-header h3 {
      font-size: 1.3rem;
      color: var(--coffee-dark);
      margin-bottom: 0.75rem;
    }

    .formation-header p {
      color: var(--text-medium);
      font-size: 0.95rem;
    }

    .formation-meta {
      padding: 1rem 2rem;
      background: var(--cream-light);
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
    }

    .meta-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.85rem;
      color: var(--text-medium);
    }

    .meta-icon {
      font-size: 1rem;
    }

    .formation-footer {
      padding: 1.5rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid var(--cream);
    }

    .formation-price {
      font-family: 'Fraunces', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--caramel);
    }

    .formation-link {
      color: var(--coffee-medium);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .formation-link:hover {
      color: var(--caramel);
    }

    /* Details/Summary pour objectifs */
    .formation-details {
      border-top: 1px solid var(--cream);
    }

    .formation-details summary {
      padding: 1rem 2rem;
      cursor: pointer;
      font-weight: 500;
      color: var(--coffee-medium);
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .formation-details summary::after {
      content: '+';
      font-size: 1.2rem;
      transition: transform 0.3s ease;
    }

    .formation-details[open] summary::after {
      transform: rotate(45deg);
    }

    .details-grid {
      padding: 0 2rem 2rem;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .details-block {
      background: var(--cream-light);
      padding: 1rem;
      border-radius: 12px;
    }

    .details-block.full {
      grid-column: span 2;
    }

    .details-block h4 {
      font-size: 0.9rem;
      color: var(--coffee-dark);
      margin-bottom: 0.5rem;
    }

    .details-block p,
    .details-block li {
      font-size: 0.85rem;
      color: var(--text-medium);
    }

    .details-block ul {
      list-style: none;
    }

    .details-block li {
      padding: 0.25rem 0;
      padding-left: 1rem;
      position: relative;
    }

    .details-block li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: var(--caramel);
    }

    /* ========================================
       ÉQUIPE SECTION
    ======================================== */
    .equipe {
      background: var(--white);
    }

    .equipe-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .equipe-header .section-intro {
      margin: 0 auto;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      max-width: 900px;
      margin: 0 auto;
    }

    .team-card {
      text-align: center;
      padding: 2rem;
      background: var(--cream-light);
      border-radius: 20px;
      transition: transform 0.3s ease;
    }

    .team-card:hover {
      transform: translateY(-5px);
    }

    .team-avatar {
      width: 100px;
      height: 100px;
      background: linear-gradient(135deg, var(--coffee-medium) 0%, var(--coffee-light) 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      font-family: 'Fraunces', serif;
      font-size: 1.8rem;
      font-weight: 600;
      color: var(--cream);
    }

    .team-info h3 {
      font-size: 1.2rem;
      color: var(--coffee-dark);
      margin-bottom: 0.25rem;
    }

    .team-role {
      color: var(--caramel);
      font-weight: 500;
      font-size: 0.9rem;
      margin-bottom: 0.25rem;
    }

    .team-expertise {
      color: var(--text-medium);
      font-size: 0.85rem;
    }

    /* ========================================
       APPROCHE SECTION
    ======================================== */
    .approche {
      background: var(--coffee-dark);
      color: var(--cream);
    }

    .approche .section-label {
      background: rgba(212, 165, 116, 0.2);
      color: var(--latte);
    }

    .approche .section-title {
      color: var(--cream);
    }

    .approche-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .approche-text p {
      color: var(--cream);
      opacity: 0.9;
      margin-bottom: 1rem;
    }

    .approche-features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .approche-feature {
      display: flex;
      gap: 1rem;
    }

    .feature-icon {
      width: 50px;
      height: 50px;
      background: rgba(212, 165, 116, 0.2);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      flex-shrink: 0;
    }

    .feature-content h4 {
      color: var(--cream);
      font-size: 1rem;
      margin-bottom: 0.25rem;
    }

    .feature-content p {
      font-size: 0.85rem;
      opacity: 0.7;
    }

    .approche-visual {
      position: relative;
    }

    .approche-image-placeholder {
      width: 100%;
      aspect-ratio: 1;
      background: linear-gradient(135deg, var(--coffee-medium) 0%, var(--espresso) 100%);
      border-radius: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border: 2px dashed var(--latte);
    }

    .approche-image-placeholder.is-photo {
      border: none;
      background: transparent;
      overflow: hidden;
      display: block;
    }

    .approche-image-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 20px;
    }

    /* ========================================
       CONTACT SECTION
    ======================================== */
    .contact {
      background: var(--cream-light);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
    }

    .contact-items {
      margin-top: 2rem;
    }

    .contact-item {
      display: flex;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .contact-item-icon {
      width: 50px;
      height: 50px;
      background: var(--cream);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
    }

    .contact-item-content h4 {
      font-size: 0.9rem;
      color: var(--coffee-dark);
      margin-bottom: 0.25rem;
    }

    .contact-item-content a,
    .contact-item-content p {
      color: var(--text-medium);
      text-decoration: none;
      font-size: 0.95rem;
    }

    .contact-item-content a:hover {
      color: var(--caramel);
    }

    .contact-form-wrapper {
      background: var(--white);
      padding: 2.5rem;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    }

    .contact-form-wrapper h3 {
      font-size: 1.5rem;
      color: var(--coffee-dark);
      margin-bottom: 1.5rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .form-group {
      margin-bottom: 1rem;
    }

    .form-group label {
      display: block;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--coffee-dark);
      margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 0.875rem 1rem;
      border: 1px solid var(--cream);
      border-radius: 10px;
      font-family: inherit;
      font-size: 0.95rem;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--caramel);
      box-shadow: 0 0 0 3px rgba(196, 129, 61, 0.1);
    }

    .form-group textarea {
      min-height: 120px;
      resize: vertical;
    }

    .form-submit {
      width: 100%;
      padding: 1rem;
      font-size: 1rem;
    }

    /* ========================================
       FOOTER
    ======================================== */
    footer {
      background: var(--espresso);
      color: var(--cream);
      padding: 4rem 0 2rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand p {
      color: var(--cream);
      opacity: 0.7;
      font-size: 0.9rem;
      margin-top: 1rem;
    }

    .footer-section h4 {
      font-size: 1rem;
      margin-bottom: 1.5rem;
      color: var(--cream);
    }

    .footer-section a {
      display: block;
      color: var(--cream);
      opacity: 0.7;
      text-decoration: none;
      font-size: 0.9rem;
      padding: 0.3rem 0;
      transition: opacity 0.3s ease;
    }

    .footer-section a:hover {
      opacity: 1;
    }

    .footer-bottom {
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.85rem;
      opacity: 0.6;
    }

    .footer-legal {
      display: flex;
      gap: 2rem;
    }

    .footer-legal a {
      color: var(--cream);
      text-decoration: none;
    }

    /* ========================================
       RESPONSIVE
    ======================================== */
    @media (max-width: 1024px) {
      .hero-grid,
      .approche-grid,
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .expertise-grid {
        grid-template-columns: 1fr;
      }

      .carousel-track .formation-card {
        flex: 0 0 clamp(300px, calc((100% - 1.5rem) / 2), 380px);
      }

      .team-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.5rem;
      }

      .section-title {
        font-size: 2rem;
      }

      .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
      }

      .approche-features {
        grid-template-columns: 1fr;
      }

      .team-grid {
        grid-template-columns: 1fr;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .header-nav {
        display: none;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
      }

      .details-grid {
        grid-template-columns: 1fr;
      }

      .details-block.full {
        grid-column: span 1;
      }

      .formations-tabs {
        flex-wrap: wrap;
        gap: 0.75rem;
      }

      .tab-btn {
        flex: 1 1 calc(50% - 0.75rem);
        text-align: center;
      }

      .carousel-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .carousel-track .formation-card {
        flex: 0 0 100%;
      }
    }
