/* ==========================================================
   COCOTTES — CSS DE TOUTES LES PAGES
   Concaténé depuis les mockups validés.
   Resets globaux (* et body) retirés pour ne pas gêner Astra.
   ========================================================== */


/* ===================== HOMEPAGE ===================== */
.cc-yorkmade { font-family: 'Yorkmade', 'Bowlby One SC', Impact, sans-serif; letter-spacing: 0.5px; text-transform: lowercase; }
.cc-jost { font-family: 'Jost', 'Inter', sans-serif; }
.cc-red { color: #E63329; }
.cc-yellow-bg { background: #F8C72E; }
.cc-red-bg { background: #E63329; }
.cc-cream-bg { background: #FDF6EC; }
.cc-section { padding: 48px 32px; }
.cc-btn-red { background: #E63329; color: #fff; padding: 14px 28px; border-radius: 40px; font-weight: 600; display: inline-block; text-decoration: none; font-size: 14px; letter-spacing: 0.5px; text-transform: uppercase; }
.cc-btn-yellow { background: #F8C72E; color: #1A1A1A; padding: 14px 28px; border-radius: 40px; font-weight: 600; display: inline-block; text-decoration: none; font-size: 14px; letter-spacing: 0.5px; text-transform: uppercase; }
.cc-btn-outline { background: transparent; color: #E63329; border: 2px solid #E63329; padding: 12px 26px; border-radius: 40px; font-weight: 600; display: inline-block; text-decoration: none; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; }
.cc-btn-dark { background: #1A1A1A; color: #fff; padding: 14px 28px; border-radius: 40px; font-weight: 600; display: inline-block; text-decoration: none; font-size: 14px; letter-spacing: 0.5px; text-transform: uppercase; }
.cc-label-section { color: #E63329; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
.cc-h2 { font-size: 42px; line-height: 1; margin: 0 0 16px; color: #1A1A1A; }
.cc-photo { background-size: cover; background-position: center; border-radius: 8px; }

/* ===================== À PROPOS ===================== */
/* ===== RESET ===== */
  
  

  /* ===== TYPOGRAPHIE ===== */
  .cc-yorkmade {
    font-family: 'Yorkmade', 'Bowlby One SC', Impact, sans-serif;
    letter-spacing: 0.5px;
    text-transform: lowercase;
    font-weight: 400;
  }
  .cc-jost { font-family: 'Jost', sans-serif; }

  /* ===== COULEURS ===== */
  .cc-red { color: #E63329; }
  .cc-yellow { color: #F8C72E; }
  .cc-yellow-bg { background: #F8C72E; }
  .cc-red-bg { background: #E63329; }
  .cc-cream-bg { background: #FDF6EC; }
  .cc-dark-bg { background: #1A1A1A; }

  /* ===== UTILITAIRES ===== */
  .cc-section { padding: 80px 40px; }
  .cc-container { max-width: 1200px; margin: 0 auto; }
  .cc-label-section {
    color: #E63329;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
  }

  /* ===== BOUTONS ===== */
  .cc-btn-red {
    background: #E63329; color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none; cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .cc-btn-red:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(230, 51, 41, 0.3); }
  .cc-btn-yellow {
    background: #F8C72E; color: #1A1A1A;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  .cc-btn-outline {
    background: transparent; color: #1A1A1A;
    border: 2px solid #1A1A1A;
    padding: 12px 26px;
    border-radius: 40px;
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  .cc-btn-dark {
    background: #1A1A1A; color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 8px;
  }

  /* ===== HEADER ===== */
  .cc-header {
    background: #fff;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #1A1A1A;
    position: sticky; top: 0; z-index: 100;
  }
  .cc-logo-wrap { display: flex; align-items: center; gap: 12px; }
  .cc-logo {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: #F8C72E;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .cc-logo .cc-yorkmade { font-size: 10px; color: #E63329; text-align: center; line-height: 0.9; }
  .cc-tagline { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 2px; }
  .cc-nav { display: flex; gap: 28px; align-items: center; font-size: 14px; font-weight: 500; }
  .cc-nav a { color: #1A1A1A; text-decoration: none; }
  .cc-nav a.active { color: #E63329; font-weight: 600; }
  .cc-nav .cc-btn-red { font-size: 12px; padding: 10px 20px; }
  .cc-nav .cc-btn-yellow {
    font-size: 12px;
    padding: 10px 20px;
    border: 2px solid #1A1A1A;
    transition: all 0.2s;
  }
  .cc-nav .cc-btn-yellow:hover {
    background: #1A1A1A;
    color: #F8C72E;
  }

  /* ============================================
     HERO FONDATEURS (90vh)
     ============================================ */
  .cc-hero-founders {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 90vh;
    background: #FDF6EC;
    position: relative;
  }
  .cc-hero-founders-text {
    padding: 70px 70px 70px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }
  .cc-hero-breadcrumb {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 24px;
  }
  .cc-hero-breadcrumb a { color: #888; text-decoration: none; }
  .cc-hero-breadcrumb a:hover { color: #E63329; }

  /* Titre visuel (gros) - décoratif, pas une balise heading */
  .cc-hero-title {
    display: block;
    font-family: 'Yorkmade', 'Bowlby One SC', Impact, sans-serif;
    font-weight: 400;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    font-size: 92px;
    line-height: 0.92;
    color: #1A1A1A;
    margin: 0 0 24px;
  }

  /* H1 SEO sous le gros titre */
  .cc-hero-subtitle {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 19px;
    font-weight: 500;
    color: #444;
    line-height: 1.4;
    max-width: 540px;
    letter-spacing: 0;
    text-transform: none;
    position: relative;
    padding-left: 50px;
    margin: 0 0 32px;
  }
  .cc-hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0; top: 14px;
    width: 38px; height: 2px;
    background: #E63329;
  }
  .cc-hero-subtitle strong {
    color: #E63329;
    font-weight: 600;
  }

  .cc-hero-intro {
    font-size: 18px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 550px;
  }
  .cc-hero-quote {
    margin-top: 32px;
    padding: 24px 0 0;
    border-top: 2px solid #F8C72E;
    font-style: italic;
    color: #666;
    font-size: 15px;
    max-width: 500px;
  }
  .cc-signature {
    font-family: 'Brush Script MT', cursive;
    font-size: 26px;
    color: #E63329;
    margin-top: 10px;
    font-style: normal;
  }

  /* Image fondateurs */
  .cc-hero-founders-image {
    background: url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?w=1200') center/cover;
    position: relative;
    overflow: hidden;
  }
  .cc-hero-founders-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(248, 199, 46, 0.15), rgba(230, 51, 41, 0.1));
  }
  /* Badge décoratif sur l'image */
  .cc-hero-badge {
    position: absolute;
    bottom: 40px; left: -40px;
    background: #E63329;
    color: #fff;
    padding: 18px 28px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    z-index: 2;
  }
  .cc-hero-badge-number {
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 40px;
    line-height: 1;
    text-transform: lowercase;
  }
  .cc-hero-badge-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
  }

  /* Indicateur de scroll */
  .cc-scroll-hint {
    position: absolute;
    bottom: 30px; left: 80px;
    display: flex; align-items: center; gap: 12px;
    color: #888;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .cc-scroll-hint i { font-size: 22px; animation: bounce 2s infinite; }
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
  }

  /* ===== TIMELINE ===== */
  .cc-timeline-section {
    background: #fff;
    padding: 100px 40px;
  }
  .cc-timeline-header { text-align: center; margin-bottom: 60px; }
  .cc-timeline-header h2 {
    font-size: 56px;
    line-height: 1;
  }
  .cc-timeline-script {
    font-family: 'Brush Script MT', cursive;
    font-size: 32px;
    color: #E63329;
    margin-bottom: 12px;
  }
  .cc-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
  }
  .cc-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 3px;
    background: #F8C72E;
    transform: translateX(-50%);
  }
  .cc-timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
    align-items: center;
  }
  .cc-timeline-item:nth-child(odd) { justify-content: flex-start; }
  .cc-timeline-item:nth-child(even) { justify-content: flex-end; }
  .cc-timeline-content {
    background: #FDF6EC;
    padding: 24px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    width: 45%;
    position: relative;
  }
  .cc-timeline-item:nth-child(odd) .cc-timeline-content::after {
    content: '';
    position: absolute;
    right: -10px; top: 50%;
    transform: translateY(-50%);
    border: 10px solid transparent;
    border-left-color: #FDF6EC;
  }
  .cc-timeline-item:nth-child(even) .cc-timeline-content::after {
    content: '';
    position: absolute;
    left: -10px; top: 50%;
    transform: translateY(-50%);
    border: 10px solid transparent;
    border-right-color: #FDF6EC;
  }
  .cc-timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px; height: 20px;
    border-radius: 50%;
    background: #E63329;
    border: 4px solid #F8C72E;
    z-index: 2;
  }
  .cc-timeline-date {
    color: #E63329;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
  }
  .cc-timeline-content h3 {
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 24px;
    text-transform: lowercase;
    margin-bottom: 8px;
  }
  .cc-timeline-content p { font-size: 14px; color: #666; margin: 0; }

  /* ===== L'ÉQUIPE / GÉRANTS ===== */
  .cc-team {
    background: #FDF6EC;
    padding: 100px 40px;
  }
  .cc-team-header { text-align: center; margin-bottom: 60px; }
  .cc-team-header h2 { font-size: 56px; line-height: 1; }
  .cc-team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
  }
  .cc-team-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: border-color 0.3s;
  }
  .cc-team-card:hover { border-color: #F8C72E; }
  .cc-team-photo {
    height: 380px;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .cc-team-card:nth-child(1) .cc-team-photo { background-image: url('https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=600'); }
  .cc-team-card:nth-child(2) .cc-team-photo { background-image: url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=600'); }
  .cc-team-badge {
    position: absolute;
    top: 16px; left: 16px;
    background: #F8C72E;
    color: #1A1A1A;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .cc-team-info { padding: 28px; }
  .cc-team-info h3 {
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 30px;
    text-transform: lowercase;
    color: #E63329;
    margin-bottom: 4px;
  }
  .cc-team-role {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }
  .cc-team-info p { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 16px; }
  .cc-team-specialty {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FDF6EC;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 12px;
    color: #1A1A1A;
    font-weight: 600;
  }

  /* ===== RAYON D'INTERVENTION ===== */
  .cc-territory {
    background: linear-gradient(180deg, #FDF6EC 0%, #fff 100%);
    padding: 100px 40px;
  }
  .cc-territory-wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  .cc-territory-text h2 { font-size: 56px; line-height: 1; }
  .cc-territory-text p { font-size: 16px; color: #444; line-height: 1.8; margin-bottom: 20px; }
  .cc-cities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
  }
  .cc-city-tag {
    background: #fff;
    border: 2px solid #1A1A1A;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #1A1A1A;
    text-decoration: none;
    transition: all 0.2s;
  }
  .cc-city-tag:hover { background: #E63329; color: #fff; border-color: #E63329; }
  .cc-city-tag.cc-city-main { background: #E63329; color: #fff; border-color: #E63329; }

  /* Map SVG */
  .cc-map-container {
    position: relative;
    background: #F8C72E;
    border-radius: 24px;
    padding: 30px;
    overflow: hidden;
  }
  .cc-map-container::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 150px; height: 150px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
  }

  /* ===== CHIFFRES (anciennement intro SEO) ===== */
  .cc-stats-section {
    background: #FDF6EC;
    padding: 80px 40px;
    text-align: center;
  }
  .cc-stats-section h2 {
    font-size: 56px;
    line-height: 1;
    margin-bottom: 16px;
  }
  .cc-stats-section p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    color: #444;
  }
  .cc-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
  }
  .cc-stat { text-align: center; }
  .cc-stat-number {
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 64px;
    color: #E63329;
    line-height: 1;
    text-transform: lowercase;
  }
  .cc-stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1A1A1A;
    margin-top: 8px;
    font-weight: 600;
  }

  /* ===== FOODTRUCK PHOTOS ===== */
  .cc-truck-photos {
    background: #1A1A1A;
    color: #fff;
    padding: 100px 40px;
  }
  .cc-truck-photos-header {
    max-width: 700px;
    margin-bottom: 60px;
  }
  .cc-truck-photos-header .cc-label-section { color: #F8C72E; }
  .cc-truck-photos-header h2 { color: #fff; font-size: 56px; line-height: 1; }
  .cc-truck-photos-header p { color: rgba(255,255,255,0.7); font-size: 17px; max-width: 540px; margin-top: 16px; }
  .cc-truck-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .cc-truck-photo {
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    transition: transform 0.3s;
  }
  .cc-truck-photo:hover { transform: scale(1.02); }
  .cc-truck-photo:nth-child(1) { grid-column: span 2; grid-row: span 2; background-image: url('https://images.unsplash.com/photo-1519676867240-f03562e64548?w=800'); }
  .cc-truck-photo:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1607920591413-cdba5b0db82e?w=400'); }
  .cc-truck-photo:nth-child(3) { background-image: url('https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?w=400'); }
  .cc-truck-photo:nth-child(4) { background-image: url('https://images.unsplash.com/photo-1528207776546-365bb710ee93?w=400'); }
  .cc-truck-photo:nth-child(5) { background-image: url('https://images.unsplash.com/photo-1519915028121-7d3463d20b13?w=400'); }

  /* ===== PARALLAX (Notre credo) ===== */
  .cc-parallax {
    background-image: linear-gradient(rgba(26, 26, 26, 0.55), rgba(26, 26, 26, 0.65)), url('https://images.unsplash.com/photo-1528207776546-365bb710ee93?w=1600');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 140px 40px;
    color: #fff;
    text-align: center;
  }
  .cc-parallax-content { max-width: 800px; margin: 0 auto; }
  .cc-parallax-label {
    color: #F8C72E;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 24px;
  }
  .cc-parallax h2 {
    font-size: 64px;
    color: #fff;
    line-height: 1;
    margin-bottom: 24px;
  }
  .cc-parallax p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: rgba(255,255,255,0.95);
  }

  /* ===== CTA FINAL ===== */
  .cc-cta-final {
    background: #F8C72E;
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cc-cta-final::before {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(230, 51, 41, 0.08);
  }
  .cc-cta-final h2 {
    font-size: 72px;
    line-height: 1;
    color: #1A1A1A;
    margin-bottom: 20px;
    position: relative; z-index: 1;
  }
  .cc-cta-final p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 36px;
    color: #444;
    position: relative; z-index: 1;
  }
  .cc-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative; z-index: 1;
  }

  /* ===== FOOTER ===== */
  .cc-footer {
    background: #1A1A1A;
    color: #fff;
    padding: 60px 40px 24px;
  }
  .cc-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto; margin-right: auto;
  }
  .cc-footer h5 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #F8C72E;
    margin-bottom: 16px;
  }
  .cc-footer-links { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 2; }
  .cc-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    max-width: 1200px;
    margin: 0 auto;
  }
  .cc-social { display: flex; gap: 12px; }
  .cc-social div {
    width: 38px; height: 38px;
    background: #F8C72E;
    color: #1A1A1A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .cc-hero-founders { grid-template-columns: 1fr; min-height: auto; }
    .cc-hero-founders-text { padding: 60px 28px 80px; }
    .cc-hero-title { font-size: 52px; }
    .cc-hero-subtitle { padding-left: 0; font-size: 16px; }
    .cc-hero-subtitle::before { display: none; }
    .cc-hero-founders-image { min-height: 400px; order: -1; }
    .cc-hero-badge { left: 20px; bottom: 20px; }
    .cc-scroll-hint { display: none; }

    .cc-team-grid, .cc-truck-grid, .cc-footer-grid, .cc-territory-wrap { grid-template-columns: 1fr; }
    .cc-truck-grid { grid-template-rows: auto; }
    .cc-truck-photo { min-height: 200px; }
    .cc-truck-photo:nth-child(1) { grid-column: auto; grid-row: auto; min-height: 280px; }
    .cc-section { padding: 60px 24px; }
    .cc-nav { display: none; }

    .cc-timeline::before { left: 20px; }
    .cc-timeline-item { justify-content: flex-start !important; padding-left: 50px; }
    .cc-timeline-content { width: 100%; }
    .cc-timeline-content::after { display: none !important; }
    .cc-timeline-dot { left: 20px; }
    .cc-parallax { background-attachment: scroll; }

    .cc-timeline-header h2, .cc-team-header h2, .cc-territory-text h2,
    .cc-stats-section h2, .cc-truck-photos-header h2 { font-size: 36px; }
    .cc-parallax h2, .cc-cta-final h2 { font-size: 42px; }
  }

/* ===================== PAGE MÈRE CRÊPES & GALETTES ===================== */
.cc-yorkmade {
    font-family: 'Yorkmade', 'Bowlby One SC', Impact, sans-serif;
    letter-spacing: 0.5px;
    text-transform: lowercase;
    font-weight: 400;
  }

  .cc-red { color: #E63329; }
  .cc-yellow { color: #F8C72E; }

  .cc-section { padding: 100px 40px; }
  .cc-container { max-width: 1200px; margin: 0 auto; }
  .cc-label-section {
    color: #E63329;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
  }

  /* ===== BOUTONS ===== */
  .cc-btn-red {
    background: #E63329; color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none; cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .cc-btn-red:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(230, 51, 41, 0.3); }
  .cc-btn-yellow {
    background: #F8C72E; color: #1A1A1A;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  .cc-btn-dark {
    background: #1A1A1A; color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 8px;
  }

  /* ===== HEADER ===== */
  .cc-header {
    background: #fff;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #1A1A1A;
    position: sticky; top: 0; z-index: 100;
  }
  .cc-logo-wrap { display: flex; align-items: center; gap: 12px; }
  .cc-logo {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: #F8C72E;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .cc-logo .cc-yorkmade { font-size: 10px; color: #E63329; text-align: center; line-height: 0.9; }
  .cc-tagline { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 2px; }
  .cc-nav { display: flex; gap: 28px; align-items: center; font-size: 14px; font-weight: 500; }
  .cc-nav a { color: #1A1A1A; text-decoration: none; }
  .cc-nav a.active { color: #E63329; font-weight: 600; }
  .cc-nav .cc-btn-yellow {
    font-size: 12px;
    padding: 10px 20px;
    border: 2px solid #1A1A1A;
    transition: all 0.2s;
  }
  .cc-nav .cc-btn-yellow:hover {
    background: #1A1A1A;
    color: #F8C72E;
  }

  /* ============================================
     SECTION 1 : HERO FAIT MAISON
     ============================================ */
  .cc-hero {
    background: #FDF6EC;
    padding: 90px 40px 80px;
    position: relative;
    overflow: hidden;
  }
  .cc-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .cc-breadcrumb {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 24px;
  }
  .cc-breadcrumb a { color: #888; text-decoration: none; }
  .cc-hero-title {
    font-size: 92px;
    line-height: 0.92;
    margin-bottom: 28px;
    color: #1A1A1A;
  }
  .cc-hero-subtitle {
    font-size: 18px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 540px;
  }
  .cc-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
  }
  .cc-hero-badge {
    background: #fff;
    border: 2px solid #1A1A1A;
    border-radius: 40px;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
  }
  .cc-hero-badge i { color: #E63329; font-size: 18px; }

  .cc-hero-visual {
    position: relative;
    height: 580px;
  }

  /* Disque jaune décoratif derrière */
  .cc-hero-yellow-disc {
    position: absolute;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: #F8C72E;
    top: 70px;
    right: 20px;
    z-index: 1;
  }

  /* Photos rondes (galette + crêpe) */
  .cc-hero-food {
    position: absolute;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    border: 8px solid #FDF6EC;
    transition: transform 0.4s ease;
  }
  .cc-hero-food:hover { transform: rotate(0deg) scale(1.03); }

  .cc-hero-galette {
    width: 320px; height: 320px;
    top: 50px; right: 30px;
    background-image: url('https://images.unsplash.com/photo-1565299543923-37dd37887442?w=800');
    transform: rotate(-4deg);
    z-index: 3;
  }

  .cc-hero-crepe {
    width: 230px; height: 230px;
    bottom: 30px; left: 30px;
    background-image: url('https://images.unsplash.com/photo-1519676867240-f03562e64548?w=600');
    transform: rotate(6deg);
    z-index: 4;
  }

  /* Étiquettes manuscrites sur les photos */
  .cc-hero-label {
    position: absolute;
    background: #1A1A1A;
    color: #F8C72E;
    font-family: 'Brush Script MT', cursive;
    font-size: 22px;
    padding: 4px 16px;
    border-radius: 30px;
    transform: rotate(-6deg);
    z-index: 5;
    white-space: nowrap;
  }
  .cc-hero-label-galette { top: 350px; right: 90px; }
  .cc-hero-label-crepe {
    top: 220px; left: 200px;
    background: #E63329;
    color: #fff;
    transform: rotate(8deg);
  }

  /* Décorations dessinées à la main */
  .cc-deco {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    color: #1A1A1A;
  }
  .cc-deco svg {
    display: block;
    width: 100%; height: 100%;
    overflow: visible;
  }

  .cc-deco-flower {
    top: 20px; left: 90px;
    width: 70px; height: 70px;
    color: #E63329;
  }
  .cc-deco-star1 {
    top: 5px; right: 180px;
    width: 32px; height: 32px;
  }
  .cc-deco-star2 {
    bottom: 20px; right: 30px;
    width: 26px; height: 26px;
    color: #E63329;
  }
  .cc-deco-swirl {
    bottom: 200px; right: -10px;
    width: 65px; height: 65px;
    transform: rotate(15deg);
  }
  .cc-deco-heart {
    top: 80px; right: 360px;
    width: 36px; height: 36px;
    color: #E63329;
  }
  .cc-deco-curls {
    top: 130px; left: 25px;
    width: 50px; height: 80px;
  }
  .cc-deco-triskel {
    bottom: 90px; left: 280px;
    width: 60px; height: 60px;
  }
  .cc-deco-dots {
    top: 380px; left: 100px;
    width: 60px; height: 60px;
  }
  .cc-deco-zigzag {
    top: 30px; right: 30px;
    width: 55px; height: 20px;
    color: #E63329;
  }

  /* ============================================
     SECTION 2 : CARTE DES PRODUCTEURS LOCAUX
     ============================================ */
  .cc-producers {
    background: #1A1A1A;
    color: #fff;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
  }
  .cc-producers::before {
    content: '🌾';
    position: absolute;
    top: 40px; left: 60px;
    font-size: 48px;
    opacity: 0.15;
    transform: rotate(-15deg);
  }
  .cc-producers::after {
    content: '🌾';
    position: absolute;
    bottom: 40px; right: 60px;
    font-size: 48px;
    opacity: 0.15;
    transform: rotate(15deg);
  }
  .cc-producers-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
  }
  .cc-producers-header .cc-label-section { color: #F8C72E; }
  .cc-producers-header h2 {
    color: #fff;
    font-size: 56px;
    line-height: 1;
    margin-bottom: 20px;
  }
  .cc-producers-script {
    font-family: 'Brush Script MT', cursive;
    font-size: 28px;
    color: #F8C72E;
    margin-bottom: 12px;
  }
  .cc-producers-header p {
    color: rgba(255,255,255,0.8);
    font-size: 17px;
  }

  .cc-producers-map-wrap {
    background: #FDF6EC;
    border-radius: 24px;
    padding: 40px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
  }
  .cc-producers-map-wrap::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px dashed #F8C72E;
    border-radius: 28px;
    pointer-events: none;
  }
  .cc-producers-svg {
    width: 100%;
    height: auto;
    display: block;
  }

  .cc-producers-legend {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
  .cc-legend-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .cc-legend-icon {
    width: 42px; height: 42px;
    background: #F8C72E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
  }
  .cc-legend-text { flex: 1; }
  .cc-legend-name {
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 2px;
  }
  .cc-legend-place {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* ============================================
     SECTION 3 / 4 : NOS GALETTES & NOS CRÊPES
     ============================================ */
  .cc-menu-section {
    padding: 100px 40px;
    background: #FDF6EC;
  }
  .cc-menu-section.alt { background: #fff; }
  .cc-menu-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .cc-menu-header h2 {
    font-size: 64px;
    line-height: 1;
    margin-bottom: 16px;
  }
  .cc-menu-header p {
    font-size: 17px;
    color: #555;
  }

  /* Cards grid */
  .cc-menu-grid-galettes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
  }
  .cc-menu-grid-crepes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
  }

  .cc-menu-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
    text-decoration: none;
    color: inherit;
    border: 3px solid transparent;
  }
  .cc-menu-section.alt .cc-menu-card { background: #FDF6EC; }
  .cc-menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    border-color: #F8C72E;
  }
  .cc-menu-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .cc-menu-card-badge {
    position: absolute;
    top: 14px; right: 14px;
    background: #E63329;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 30px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(230, 51, 41, 0.3);
  }
  .cc-menu-card-badge.cc-badge-new {
    background: #F8C72E;
    color: #1A1A1A;
  }
  .cc-menu-card-content {
    padding: 24px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .cc-menu-card h3 {
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 26px;
    text-transform: lowercase;
    line-height: 1;
    margin-bottom: 12px;
  }
  .cc-menu-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
  }
  .cc-menu-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #E63329;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .cc-menu-card-cta i { transition: transform 0.2s; }
  .cc-menu-card:hover .cc-menu-card-cta i { transform: translateX(4px); }

  /* Background colors variants for crepes */
  .cc-menu-card.cc-card-cream .cc-menu-card-img { background-color: #FFE4B5; }
  .cc-menu-card.cc-card-pink .cc-menu-card-img { background-color: #FFC2D4; }
  .cc-menu-card.cc-card-brown .cc-menu-card-img { background-color: #D4A574; }

  /* ============================================
     SECTION 5 : OÙ NOUS RETROUVER (ÉVÈNEMENTS)
     ============================================ */
  .cc-events {
    background: #F8C72E;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
  }
  .cc-events::before {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(230, 51, 41, 0.08);
  }
  .cc-events::after {
    content: '';
    position: absolute;
    bottom: -80px; right: -80px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.06);
  }
  .cc-events-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
  }
  .cc-events-header h2 {
    font-size: 64px;
    line-height: 1;
    margin-bottom: 20px;
  }
  .cc-events-header p {
    font-size: 17px;
    color: #1A1A1A;
  }
  .cc-events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .cc-event-card {
    background: #fff;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
  }
  .cc-event-card:hover {
    border-color: #1A1A1A;
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  }
  .cc-event-img {
    height: 140px;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .cc-event-content {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .cc-event-card h3 {
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 20px;
    text-transform: lowercase;
    line-height: 1.1;
    margin-bottom: 10px;
  }
  .cc-event-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 14px;
    flex: 1;
  }
  /* Indicateur informatif (remplace l'ancien CTA rouge) */
  .cc-event-meta {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .cc-event-meta i { color: #1A1A1A; font-size: 14px; }

  /* Variante "Privatiser le foodtruck" (dernière carte) */
  .cc-event-card-dark {
    background: #1A1A1A;
    color: #fff;
    position: relative;
  }
  .cc-event-card-dark::before {
    content: '★';
    position: absolute;
    top: 12px; right: 14px;
    color: #F8C72E;
    font-size: 24px;
    z-index: 3;
  }
  .cc-event-card-dark:hover { border-color: #F8C72E; }
  .cc-event-card-dark .cc-event-img {
    height: 140px;
    filter: brightness(0.7) contrast(1.05);
  }
  .cc-event-card-dark h3 { color: #F8C72E; }
  .cc-event-card-dark p { color: rgba(255,255,255,0.75); }
  .cc-event-card-dark .cc-event-meta {
    color: #F8C72E;
    border-top-color: rgba(255,255,255,0.15);
  }
  .cc-event-card-dark .cc-event-meta i { color: #F8C72E; }

  /* ============================================
     SECTION 6 : CTA FINAL
     ============================================ */
  .cc-cta-final {
    background: #1A1A1A;
    padding: 100px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .cc-cta-final::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(248, 199, 46, 0.08);
  }
  .cc-cta-final h2 {
    font-size: 64px;
    line-height: 1;
    margin-bottom: 20px;
    color: #fff;
    position: relative; z-index: 1;
  }
  .cc-cta-final p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 36px;
    color: rgba(255,255,255,0.8);
    position: relative; z-index: 1;
  }
  .cc-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative; z-index: 1;
  }

  /* ===== FOOTER ===== */
  .cc-footer {
    background: #1A1A1A;
    color: #fff;
    padding: 60px 40px 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .cc-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto; margin-right: auto;
  }
  .cc-footer h5 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #F8C72E;
    margin-bottom: 16px;
  }
  .cc-footer-links { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 2; }
  .cc-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    max-width: 1200px;
    margin: 0 auto;
  }
  .cc-social { display: flex; gap: 12px; }
  .cc-social div {
    width: 38px; height: 38px;
    background: #F8C72E;
    color: #1A1A1A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .cc-menu-grid-galettes { grid-template-columns: repeat(2, 1fr); }
    .cc-menu-grid-crepes { grid-template-columns: repeat(2, 1fr); }
    .cc-events-grid { grid-template-columns: repeat(2, 1fr); }
    .cc-producers-legend { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 700px) {
    .cc-hero-grid, .cc-footer-grid { grid-template-columns: 1fr; }
    .cc-hero-title { font-size: 52px; }
    .cc-hero-visual { height: 380px; }
    .cc-menu-header h2, .cc-events-header h2, .cc-cta-final h2, .cc-producers-header h2 { font-size: 38px; }
    .cc-menu-grid-galettes, .cc-menu-grid-crepes, .cc-events-grid, .cc-producers-legend { grid-template-columns: 1fr; }
    .cc-section, .cc-events, .cc-cta-final, .cc-producers, .cc-menu-section { padding: 60px 24px; }
    .cc-nav { display: none; }
    .cc-producers-map-wrap { padding: 20px; }
  }

/* ===================== PRIVATISATION (page mère) ===================== */
.cc-yorkmade {
    font-family: 'Yorkmade', 'Bowlby One SC', Impact, sans-serif;
    letter-spacing: 0.5px;
    text-transform: lowercase;
    font-weight: 400;
  }

  .cc-red { color: #E63329; }
  .cc-yellow { color: #F8C72E; }
  .cc-container { max-width: 1280px; margin: 0 auto; }
  .cc-label-section {
    color: #E63329;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
  }

  /* ===== BOUTONS ===== */
  .cc-btn-red {
    background: #E63329; color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none; cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .cc-btn-red:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(230, 51, 41, 0.3); }
  .cc-btn-yellow {
    background: #F8C72E; color: #1A1A1A;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  .cc-btn-dark {
    background: #1A1A1A; color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .cc-btn-outline {
    background: transparent; color: #1A1A1A;
    border: 2px solid #1A1A1A;
    padding: 12px 26px;
    border-radius: 40px;
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  /* ===== HEADER ===== */
  .cc-header {
    background: #fff;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #1A1A1A;
    position: sticky; top: 0; z-index: 100;
  }
  .cc-logo-wrap { display: flex; align-items: center; gap: 12px; }
  .cc-logo {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: #F8C72E;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .cc-logo .cc-yorkmade { font-size: 10px; color: #E63329; text-align: center; line-height: 0.9; }
  .cc-tagline { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 2px; }
  .cc-nav { display: flex; gap: 28px; align-items: center; font-size: 14px; font-weight: 500; }
  .cc-nav a { color: #1A1A1A; text-decoration: none; }
  .cc-nav a.active { color: #E63329; font-weight: 600; }
  .cc-nav .cc-btn-yellow {
    font-size: 12px;
    padding: 10px 20px;
    border: 2px solid #1A1A1A;
    transition: all 0.2s;
  }
  .cc-nav .cc-btn-yellow:hover {
    background: #1A1A1A;
    color: #F8C72E;
  }

  /* ============================================
     SECTION 1 : HERO PLEIN ÉCRAN avec parallax
     ============================================ */
  .cc-traiteur-hero {
    height: 88vh;
    min-height: 600px;
    background-image:
      linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 65%, rgba(0,0,0,0.85) 100%),
      url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1920');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
  }

  .cc-hero-breadcrumb {
    padding: 0 40px;
    color: rgba(255,255,255,0.85);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .cc-hero-breadcrumb a { color: rgba(255,255,255,0.85); text-decoration: none; }
  .cc-hero-breadcrumb a:hover { color: #F8C72E; }

  .cc-traiteur-hero-content {
    padding: 0 40px 30px;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    color: #fff;
  }
  .cc-traiteur-eyebrow {
    display: inline-block;
    background: #F8C72E;
    color: #1A1A1A;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 22px;
  }
  .cc-traiteur-hero h1 {
    font-size: 110px;
    line-height: 0.9;
    margin-bottom: 22px;
    color: #fff;
    max-width: 900px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
  }
  .cc-traiteur-hero-sub {
    font-size: 22px;
    color: rgba(255,255,255,0.95);
    max-width: 660px;
    line-height: 1.5;
    margin-bottom: 36px;
  }
  .cc-traiteur-hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .cc-traiteur-hero-buttons .cc-btn-glass {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .cc-traiteur-hero-buttons .cc-btn-glass:hover { background: rgba(255,255,255,0.25); }

  /* ============================================
     SECTION 2 : NOS 2 FORMULES (Foodtruck / Traiteur)
     ============================================ */
  .cc-formules {
    background: #FDF6EC;
    padding: 100px 40px;
    position: relative;
  }
  .cc-formules-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .cc-formules-script {
    font-family: 'Brush Script MT', cursive;
    font-size: 30px;
    color: #E63329;
    margin-bottom: 8px;
  }
  .cc-formules-header h2 {
    font-size: 64px;
    line-height: 1;
    margin-bottom: 16px;
  }
  .cc-formules-header p {
    font-size: 17px;
    color: #555;
  }

  .cc-formules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .cc-formule-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .cc-formule-card:hover {
    transform: translateY(-6px);
    border-color: #F8C72E;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  }
  .cc-formule-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    background-color: #D4A574;
    position: relative;
  }
  .cc-formule-badge {
    position: absolute;
    top: 18px; left: 18px;
    background: #1A1A1A;
    color: #F8C72E;
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .cc-formule-badge.cc-badge-red {
    background: #E63329;
    color: #fff;
  }
  .cc-formule-content {
    padding: 36px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .cc-formule-content h3 {
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 38px;
    text-transform: lowercase;
    line-height: 1;
    margin-bottom: 8px;
  }
  .cc-formule-subtitle {
    font-size: 14px;
    color: #E63329;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 18px;
  }
  .cc-formule-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 22px;
  }
  .cc-formule-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
  }
  .cc-formule-features li {
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    font-size: 14px;
    color: #1A1A1A;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    line-height: 1.5;
  }
  .cc-formule-features li:last-child { border-bottom: none; }
  .cc-formule-features li::before {
    content: '✓';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 22px; height: 22px;
    background: #F8C72E;
    color: #1A1A1A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
  }
  .cc-formule-ideal {
    background: #FDF6EC;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 13px;
    color: #1A1A1A;
    margin-bottom: 20px;
  }
  .cc-formule-ideal strong {
    color: #E63329;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
    display: block;
    margin-bottom: 4px;
  }
  .cc-formule-card .cc-btn-red,
  .cc-formule-card .cc-btn-dark {
    width: 100%;
    justify-content: center;
  }

  /* ============================================
     SECTION 3 : POUR QUELLES OCCASIONS ?
     ============================================ */
  .cc-occasions {
    background: #FDF6EC;
    padding: 100px 40px;
  }
  .cc-occasions-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .cc-occasions-header h2 {
    font-size: 64px;
    line-height: 1;
    margin-bottom: 16px;
  }
  .cc-occasions-header p {
    font-size: 17px;
    color: #555;
  }
  .cc-occasions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
  }
  .cc-occasion-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
  }
  /* Carte CLIQUABLE (avec page dédiée) */
  a.cc-occasion-card:hover {
    transform: translateY(-6px);
    border-color: #F8C72E;
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  }
  /* Carte NON-CLIQUABLE (sans page dédiée) */
  div.cc-occasion-card {
    cursor: default;
  }
  div.cc-occasion-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  }
  .cc-occasion-img {
    height: 160px;
    background-size: cover;
    background-position: center;
    background-color: #D4A574;
    position: relative;
  }
  .cc-occasion-icon {
    position: absolute;
    bottom: -22px; left: 20px;
    width: 50px; height: 50px;
    background: #F8C72E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  .cc-occasion-content {
    padding: 30px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .cc-occasion-content h3 {
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 22px;
    text-transform: lowercase;
    line-height: 1.1;
    margin-bottom: 10px;
  }
  .cc-occasion-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
    flex: 1;
  }
  .cc-occasion-meta {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .cc-occasion-meta i { color: #E63329; }

  /* "En savoir plus" — visible uniquement sur cartes cliquables */
  .cc-occasion-readmore {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(230, 51, 41, 0.15);
    color: #E63329;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
  }
  a.cc-occasion-card:hover .cc-occasion-readmore { gap: 12px; }
  .cc-occasion-readmore i { font-size: 16px; }

  /* ============================================
     SECTION 3 : COMMENT ÇA MARCHE ?
     ============================================ */
  .cc-process {
    background: #1A1A1A;
    color: #fff;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
  }
  .cc-process::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(248, 199, 46, 0.05);
  }
  .cc-process-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative; z-index: 2;
  }
  .cc-process-header .cc-label-section { color: #F8C72E; }
  .cc-process-script {
    font-family: 'Brush Script MT', cursive;
    font-size: 30px;
    color: #F8C72E;
    margin-bottom: 10px;
  }
  .cc-process-header h2 {
    color: #fff;
    font-size: 60px;
    line-height: 1;
    margin-bottom: 14px;
  }
  .cc-process-header p {
    color: rgba(255,255,255,0.75);
    font-size: 17px;
  }
  .cc-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative; z-index: 2;
  }
  .cc-process-step {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 32px 26px;
    position: relative;
    transition: all 0.3s;
  }
  .cc-process-step:hover {
    border-color: #F8C72E;
    background: rgba(248, 199, 46, 0.06);
    transform: translateY(-4px);
  }
  .cc-process-step-num {
    width: 54px; height: 54px;
    background: #F8C72E;
    color: #1A1A1A;
    border-radius: 50%;
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
  }
  .cc-process-step h3 {
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 22px;
    text-transform: lowercase;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.1;
  }
  .cc-process-step p {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
  }

  /* ============================================
     SECTION 4 : CE QUI EST INCLUS
     ============================================ */
  .cc-included {
    background: #F8C72E;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
  }
  .cc-included::before {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(230, 51, 41, 0.08);
  }
  .cc-included-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative; z-index: 2;
  }
  .cc-included-text h2 {
    font-size: 60px;
    line-height: 1;
    margin-bottom: 20px;
  }
  .cc-included-text p {
    font-size: 16px;
    color: #1A1A1A;
    line-height: 1.7;
    margin-bottom: 24px;
  }
  .cc-included-list {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 16px 50px rgba(0,0,0,0.1);
  }
  .cc-included-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .cc-included-item:last-child { border-bottom: none; }
  .cc-included-item-icon {
    width: 38px; height: 38px;
    background: #FDF6EC;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E63329;
    font-size: 18px;
    flex-shrink: 0;
  }
  .cc-included-item-text { flex: 1; }
  .cc-included-item-title {
    font-size: 15px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 4px;
  }
  .cc-included-item-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
  }

  /* ============================================
     SECTION 5 : GALERIE PRESTATIONS
     ============================================ */
  .cc-prestations {
    background: #FDF6EC;
    padding: 100px 40px;
  }
  .cc-prestations-header {
    text-align: center;
    margin-bottom: 50px;
  }
  .cc-prestations-header h2 {
    font-size: 60px;
    line-height: 1;
    margin-bottom: 14px;
  }
  .cc-prestations-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .cc-prestation-item {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s;
    background-color: #D4A574;
  }
  .cc-prestation-item:hover { transform: scale(1.02); }
  .cc-prestation-item:nth-child(1) { grid-row: span 2; }
  .cc-prestation-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .cc-prestation-item:hover .cc-prestation-overlay { opacity: 1; }
  .cc-prestation-overlay-tag {
    background: #F8C72E;
    color: #1A1A1A;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 8px;
  }
  .cc-prestation-overlay h4 {
    color: #fff;
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 18px;
    text-transform: lowercase;
  }

  /* ============================================
     SECTION 6 : TÉMOIGNAGES TRAITEUR
     ============================================ */
  .cc-traiteur-testimonials {
    background: #fff;
    padding: 100px 40px;
  }
  .cc-traiteur-testimonials-header {
    text-align: center;
    margin-bottom: 60px;
  }
  .cc-traiteur-testimonials-header h2 {
    font-size: 56px;
    line-height: 1;
    margin-bottom: 14px;
  }
  .cc-traiteur-testimonials-script {
    font-family: 'Brush Script MT', cursive;
    font-size: 30px;
    color: #E63329;
    margin-bottom: 8px;
  }
  .cc-traiteur-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .cc-testimonial-card {
    background: #FDF6EC;
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s;
  }
  .cc-testimonial-card:hover {
    transform: translateY(-4px);
    border-color: #F8C72E;
  }
  .cc-testimonial-card::before {
    content: '"';
    position: absolute;
    top: 12px; right: 24px;
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 80px;
    color: #F8C72E;
    line-height: 1;
  }
  .cc-testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px;
    color: #F8C72E;
    position: relative; z-index: 2;
  }
  .cc-testimonial-stars i { font-size: 18px; }
  .cc-testimonial-quote {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 22px;
    font-style: italic;
    position: relative; z-index: 2;
  }
  .cc-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(0,0,0,0.08);
  }
  .cc-testimonial-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: #E63329;
    color: #fff;
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .cc-testimonial-avatar.av-yellow { background: #F8C72E; color: #1A1A1A; }
  .cc-testimonial-avatar.av-dark { background: #1A1A1A; color: #F8C72E; }
  .cc-testimonial-name {
    font-size: 14px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 2px;
  }
  .cc-testimonial-event {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }

  /* ============================================
     SECTION 7 : CTA FINAL DEVIS
     ============================================ */
  .cc-cta-devis {
    background-image:
      linear-gradient(180deg, rgba(26,26,26,0.55) 0%, rgba(26,26,26,0.8) 100%),
      url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 120px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .cc-cta-devis-script {
    font-family: 'Brush Script MT', cursive;
    font-size: 32px;
    color: #F8C72E;
    margin-bottom: 12px;
  }
  .cc-cta-devis h2 {
    font-size: 80px;
    line-height: 0.95;
    color: #fff;
    margin-bottom: 22px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
  }
  .cc-cta-devis p {
    font-size: 19px;
    max-width: 660px;
    margin: 0 auto 38px;
    color: rgba(255,255,255,0.9);
  }
  .cc-cta-devis-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .cc-btn-yellow-xl {
    background: #F8C72E; color: #1A1A1A;
    padding: 18px 38px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex; align-items: center; gap: 10px;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .cc-btn-yellow-xl:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(248,199,46,0.4); }
  .cc-btn-glass-xl {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  /* ===== FOOTER ===== */
  .cc-footer {
    background: #1A1A1A;
    color: #fff;
    padding: 60px 40px 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .cc-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto; margin-right: auto;
  }
  .cc-footer h5 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #F8C72E;
    margin-bottom: 16px;
  }
  .cc-footer-links { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 2; }
  .cc-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    max-width: 1200px;
    margin: 0 auto;
  }
  .cc-social { display: flex; gap: 12px; }
  .cc-social div {
    width: 38px; height: 38px;
    background: #F8C72E;
    color: #1A1A1A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .cc-traiteur-hero h1 { font-size: 72px; }
    .cc-formules-grid { grid-template-columns: 1fr; }
    .cc-formules-header h2 { font-size: 48px; }
    .cc-occasions-grid { grid-template-columns: repeat(2, 1fr); }
    .cc-process-grid { grid-template-columns: repeat(2, 1fr); }
    .cc-included-grid { grid-template-columns: 1fr; gap: 40px; }
    .cc-traiteur-testimonials-grid { grid-template-columns: 1fr; }
    .cc-prestations-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .cc-prestation-item:nth-child(1) { grid-row: auto; min-height: 280px; }
  }
  @media (max-width: 700px) {
    .cc-traiteur-hero { background-attachment: scroll; height: 80vh; }
    .cc-traiteur-hero h1 { font-size: 48px; }
    .cc-traiteur-hero-sub { font-size: 17px; }
    .cc-formules-header h2 { font-size: 38px; }
    .cc-formule-content h3 { font-size: 32px; }
    .cc-formule-content { padding: 28px 24px; }
    .cc-occasions-header h2, .cc-process-header h2, .cc-included-text h2,
    .cc-prestations-header h2, .cc-traiteur-testimonials-header h2 { font-size: 36px; }
    .cc-cta-devis { background-attachment: scroll; padding: 80px 24px; }
    .cc-cta-devis h2 { font-size: 48px; }
    .cc-occasions-grid, .cc-process-grid, .cc-prestations-grid { grid-template-columns: 1fr; }
    .cc-prestations-grid { grid-template-rows: auto; }
    .cc-prestation-item { min-height: 220px; }
    .cc-footer-grid { grid-template-columns: 1fr; }
    .cc-nav { display: none; }
    .cc-occasions, .cc-process, .cc-included, .cc-prestations,
    .cc-traiteur-testimonials, .cc-formules { padding: 60px 24px; }
    .cc-included-list { padding: 24px; }
  }

/* ===================== ÉVÈNEMENT UNIQUE ===================== */
.cc-yorkmade {
    font-family: 'Yorkmade', 'Bowlby One SC', Impact, sans-serif;
    letter-spacing: 0.5px;
    text-transform: lowercase;
    font-weight: 400;
  }

  .cc-red { color: #E63329; }
  .cc-yellow { color: #F8C72E; }
  .cc-label-section {
    color: #E63329;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
  }

  /* ===== BOUTONS ===== */
  .cc-btn-red {
    background: #E63329; color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none; cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .cc-btn-red:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(230, 51, 41, 0.3); }
  .cc-btn-yellow {
    background: #F8C72E; color: #1A1A1A;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  .cc-btn-dark {
    background: #1A1A1A; color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .cc-btn-outline {
    background: transparent; color: #1A1A1A;
    border: 2px solid #1A1A1A;
    padding: 12px 26px;
    border-radius: 40px;
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  /* ===== HEADER ===== */
  .cc-header {
    background: #fff;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #1A1A1A;
    position: sticky; top: 0; z-index: 100;
  }
  .cc-logo-wrap { display: flex; align-items: center; gap: 12px; }
  .cc-logo {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: #F8C72E;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .cc-logo .cc-yorkmade { font-size: 10px; color: #E63329; text-align: center; line-height: 0.9; }
  .cc-tagline { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 2px; }
  .cc-nav { display: flex; gap: 28px; align-items: center; font-size: 14px; font-weight: 500; }
  .cc-nav a { color: #1A1A1A; text-decoration: none; }
  .cc-nav a.active { color: #E63329; font-weight: 600; }
  .cc-nav .cc-btn-yellow {
    font-size: 12px;
    padding: 10px 20px;
    border: 2px solid #1A1A1A;
    transition: all 0.2s;
  }
  .cc-nav .cc-btn-yellow:hover {
    background: #1A1A1A;
    color: #F8C72E;
  }

  /* ============================================
     SECTION 1 : HERO ÉVÈNEMENT
     ============================================ */
  .cc-event-hero {
    height: 80vh;
    min-height: 560px;
    background-image:
      linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.6) 70%, rgba(0,0,0,0.85) 100%),
      url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1920');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 0;
    color: #fff;
    position: relative;
  }
  .cc-hero-back {
    padding: 0 40px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    display: flex;
    gap: 6px;
  }
  .cc-hero-back a { color: rgba(255,255,255,0.85); text-decoration: none; }
  .cc-hero-back a:hover { color: #F8C72E; }
  .cc-event-hero-content {
    padding: 0 40px 30px;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
  }
  .cc-event-eyebrow {
    display: inline-block;
    background: #F8C72E;
    color: #1A1A1A;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 22px;
  }
  .cc-event-hero h1 {
    font-size: 130px;
    line-height: 0.9;
    margin-bottom: 22px;
    color: #fff;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
  }
  .cc-event-hero-sub {
    font-size: 22px;
    color: rgba(255,255,255,0.95);
    max-width: 620px;
    line-height: 1.5;
    margin-bottom: 32px;
  }
  .cc-event-hero-stats {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .cc-hero-stat {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
  }
  .cc-hero-stat i { color: #F8C72E; font-size: 18px; }
  .cc-hero-stat strong {
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 18px;
    color: #F8C72E;
  }

  /* ============================================
     SECTION 2 : INTRO AVEC COCOTTE
     ============================================ */
  .cc-event-intro {
    background: #FDF6EC;
    padding: 110px 40px;
    position: relative;
    overflow: hidden;
  }
  .cc-event-intro::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(248, 199, 46, 0.15);
  }
  .cc-event-intro-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .cc-intro-script {
    font-family: 'Brush Script MT', cursive;
    font-size: 32px;
    color: #E63329;
    margin-bottom: 8px;
  }
  .cc-event-intro h2 {
    font-size: 60px;
    line-height: 1;
    margin-bottom: 26px;
  }
  .cc-event-intro p {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 18px;
  }
  .cc-event-intro p strong { color: #1A1A1A; }
  .cc-event-intro p em { color: #E63329; font-style: italic; }

  /* La cocotte placeholder SVG */
  .cc-cocotte-character {
    position: relative;
    text-align: center;
  }
  .cc-cocotte-character svg {
    width: 100%;
    max-width: 360px;
    height: auto;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.12));
  }
  /* Note placeholder */
  .cc-cocotte-note {
    background: rgba(26,26,26,0.05);
    border: 1px dashed rgba(26,26,26,0.2);
    color: #888;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 20px;
    font-style: italic;
  }
  /* Bulle de la cocotte */
  .cc-cocotte-bubble {
    position: absolute;
    top: 20px; left: -20px;
    background: #1A1A1A;
    color: #fff;
    padding: 14px 18px;
    border-radius: 18px;
    font-family: 'Brush Script MT', cursive;
    font-size: 22px;
    transform: rotate(-6deg);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 3;
    max-width: 180px;
    line-height: 1.2;
  }
  .cc-cocotte-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px; right: 40px;
    width: 0; height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid #1A1A1A;
  }

  /* ============================================
     SECTION 3 : NOTRE FORMULE MARIAGE
     ============================================ */
  .cc-event-prestations {
    background: #fff;
    padding: 100px 40px;
  }
  .cc-event-prestations-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .cc-event-prestations-header h2 {
    font-size: 56px;
    line-height: 1;
    margin-bottom: 16px;
  }
  .cc-prestations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .cc-prestation-card {
    background: #FDF6EC;
    border-radius: 18px;
    padding: 30px 26px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
  }
  .cc-prestation-card:hover {
    transform: translateY(-4px);
    border-color: #F8C72E;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  }
  .cc-prestation-icon {
    width: 60px; height: 60px;
    background: #F8C72E;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
  }
  .cc-prestation-card h3 {
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 22px;
    text-transform: lowercase;
    line-height: 1.1;
    margin-bottom: 10px;
  }
  .cc-prestation-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  .cc-prestation-time {
    font-size: 11px;
    color: #E63329;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
  }

  /* ============================================
     SECTION 4 : FORMULE RECOMMANDÉE
     ============================================ */
  .cc-recommend {
    background: #F8C72E;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
  }
  .cc-recommend::before {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(230, 51, 41, 0.08);
  }
  .cc-recommend-grid {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
  }
  .cc-recommend-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E63329;
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .cc-recommend-text h3 {
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 36px;
    text-transform: lowercase;
    line-height: 1;
    margin-bottom: 14px;
  }
  .cc-recommend-text p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 18px;
  }
  .cc-recommend-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 8px;
  }
  .cc-recommend-feature {
    font-size: 13px;
    color: #1A1A1A;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
  }
  .cc-recommend-feature i {
    color: #E63329;
    font-size: 16px;
  }

  /* ============================================
     SECTION 5 : GALERIE MARIAGES
     ============================================ */
  .cc-event-gallery {
    background: #FDF6EC;
    padding: 100px 40px;
  }
  .cc-event-gallery-header {
    text-align: center;
    margin-bottom: 50px;
  }
  .cc-event-gallery-header h2 {
    font-size: 60px;
    line-height: 1;
    margin-bottom: 14px;
  }
  .cc-event-gallery-header p {
    font-size: 16px;
    color: #666;
  }
  .cc-event-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 240px 240px 240px;
    gap: 14px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .cc-gallery-tile {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s;
    background-color: #D4A574;
  }
  .cc-gallery-tile:hover { transform: scale(1.02); }
  .cc-gallery-tile:nth-child(1) { grid-row: span 2; }
  .cc-gallery-tile:nth-child(6) { grid-column: span 2; }
  .cc-gallery-tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .cc-gallery-tile:hover .cc-gallery-tile-overlay { opacity: 1; }
  .cc-gallery-tile-overlay h4 {
    color: #fff;
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 18px;
    text-transform: lowercase;
    margin-bottom: 4px;
  }
  .cc-gallery-tile-overlay span {
    font-size: 11px;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }

  /* ============================================
     SECTION 6 : TÉMOIGNAGES MARIÉS
     ============================================ */
  .cc-event-testimonials {
    background: #1A1A1A;
    color: #fff;
    padding: 100px 40px;
  }
  .cc-event-testimonials-header {
    text-align: center;
    margin-bottom: 60px;
  }
  .cc-event-testimonials-header h2 {
    color: #fff;
    font-size: 56px;
    line-height: 1;
    margin-bottom: 14px;
  }
  .cc-event-testimonials-script {
    font-family: 'Brush Script MT', cursive;
    font-size: 30px;
    color: #F8C72E;
    margin-bottom: 8px;
  }
  .cc-event-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .cc-testimonial-dark {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.3s;
  }
  .cc-testimonial-dark:hover {
    border-color: #F8C72E;
    background: rgba(248,199,46,0.05);
  }
  .cc-testimonial-dark-stars {
    color: #F8C72E;
    margin-bottom: 14px;
  }
  .cc-testimonial-dark-stars i { font-size: 18px; }
  .cc-testimonial-dark-quote {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
  }
  .cc-testimonial-dark-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .cc-testimonial-dark-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: #F8C72E;
    color: #1A1A1A;
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .cc-testimonial-dark-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
  }
  .cc-testimonial-dark-event {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }

  /* ============================================
     SECTION 7 : FAQ MARIAGES
     ============================================ */
  .cc-event-faq {
    background: #FDF6EC;
    padding: 100px 40px;
  }
  .cc-event-faq-header {
    text-align: center;
    margin-bottom: 50px;
  }
  .cc-event-faq-header h2 {
    font-size: 56px;
    line-height: 1;
    margin-bottom: 14px;
  }
  .cc-event-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .cc-faq-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 26px;
    border-left: 4px solid #E63329;
  }
  .cc-faq-card h4 {
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 18px;
    text-transform: lowercase;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  .cc-faq-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
  }
  .cc-faq-card p strong { color: #1A1A1A; }

  /* ============================================
     SECTION 8 : CTA DEVIS MARIAGE
     ============================================ */
  .cc-event-cta {
    background-image:
      linear-gradient(180deg, rgba(26,26,26,0.55) 0%, rgba(26,26,26,0.8) 100%),
      url('https://images.unsplash.com/photo-1465495976277-4387d4b0b4c6?w=1920');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 120px 40px;
    text-align: center;
    color: #fff;
  }
  .cc-event-cta-script {
    font-family: 'Brush Script MT', cursive;
    font-size: 32px;
    color: #F8C72E;
    margin-bottom: 12px;
  }
  .cc-event-cta h2 {
    font-size: 72px;
    line-height: 0.95;
    color: #fff;
    margin-bottom: 22px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
  }
  .cc-event-cta p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 36px;
    color: rgba(255,255,255,0.9);
  }
  .cc-event-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  .cc-btn-glass-xl {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .cc-btn-yellow-xl {
    background: #F8C72E; color: #1A1A1A;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex; align-items: center; gap: 10px;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .cc-btn-yellow-xl:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(248,199,46,0.4); }

  /* ============================================
     SECTION 9 : AUTRES TYPES D'ÉVÈNEMENTS
     ============================================ */
  .cc-other-events {
    background: #fff;
    padding: 90px 40px;
  }
  .cc-other-events-header {
    text-align: center;
    margin-bottom: 50px;
  }
  .cc-other-events-header h2 {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 12px;
  }
  .cc-other-events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .cc-other-event-card {
    background: #FDF6EC;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
  }
  .cc-other-event-card:hover {
    transform: translateY(-4px);
    border-color: #F8C72E;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  }
  .cc-other-event-img {
    height: 140px;
    background-size: cover;
    background-position: center;
    background-color: #D4A574;
  }
  .cc-other-event-content {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .cc-other-event-content h3 {
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 18px;
    text-transform: lowercase;
    margin-bottom: 8px;
    line-height: 1.1;
  }
  .cc-other-event-content .icon {
    font-size: 24px;
    margin-bottom: 8px;
  }

  /* ===== FOOTER ===== */
  .cc-footer {
    background: #1A1A1A;
    color: #fff;
    padding: 60px 40px 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .cc-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto; margin-right: auto;
  }
  .cc-footer h5 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #F8C72E;
    margin-bottom: 16px;
  }
  .cc-footer-links { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 2; }
  .cc-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    max-width: 1200px;
    margin: 0 auto;
  }
  .cc-social { display: flex; gap: 12px; }
  .cc-social div {
    width: 38px; height: 38px;
    background: #F8C72E;
    color: #1A1A1A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .cc-event-hero h1 { font-size: 80px; }
    .cc-event-intro-grid { grid-template-columns: 1fr; gap: 50px; }
    .cc-cocotte-character { max-width: 280px; margin: 0 auto; }
    .cc-prestations-grid { grid-template-columns: repeat(2, 1fr); }
    .cc-recommend-grid { grid-template-columns: 1fr; padding: 36px; }
    .cc-event-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px 220px; }
    .cc-gallery-tile:nth-child(1) { grid-row: auto; }
    .cc-gallery-tile:nth-child(6) { grid-column: auto; }
    .cc-event-testimonials-grid { grid-template-columns: 1fr; }
    .cc-event-faq-grid { grid-template-columns: 1fr; }
    .cc-other-events-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 700px) {
    .cc-event-hero { background-attachment: scroll; height: 70vh; }
    .cc-event-hero h1 { font-size: 56px; }
    .cc-event-intro h2, .cc-event-prestations-header h2,
    .cc-event-gallery-header h2, .cc-event-testimonials-header h2,
    .cc-event-faq-header h2 { font-size: 38px; }
    .cc-event-cta { background-attachment: scroll; padding: 80px 24px; }
    .cc-event-cta h2 { font-size: 44px; }
    .cc-other-events-grid { grid-template-columns: 1fr; }
    .cc-prestations-grid { grid-template-columns: 1fr; }
    .cc-event-gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .cc-gallery-tile { min-height: 220px; }
    .cc-footer-grid { grid-template-columns: 1fr; }
    .cc-nav { display: none; }
    .cc-event-intro, .cc-event-prestations, .cc-recommend,
    .cc-event-gallery, .cc-event-testimonials, .cc-event-faq,
    .cc-other-events { padding: 60px 24px; }
    .cc-cocotte-bubble { font-size: 18px; padding: 12px 14px; }
  }

/* ===================== GALERIE & TÉMOIGNAGES ===================== */
.cc-yorkmade {
    font-family: 'Yorkmade', 'Bowlby One SC', Impact, sans-serif;
    letter-spacing: 0.5px;
    text-transform: lowercase;
    font-weight: 400;
  }

  .cc-red { color: #E63329; }
  .cc-yellow { color: #F8C72E; }

  .cc-container { max-width: 1280px; margin: 0 auto; }
  .cc-label-section {
    color: #E63329;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
  }

  /* ===== BOUTONS ===== */
  .cc-btn-red {
    background: #E63329; color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none; cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .cc-btn-red:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(230, 51, 41, 0.3); }
  .cc-btn-yellow {
    background: #F8C72E; color: #1A1A1A;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  .cc-btn-dark {
    background: #1A1A1A; color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 8px;
  }

  /* ===== HEADER ===== */
  .cc-header {
    background: #fff;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #1A1A1A;
    position: sticky; top: 0; z-index: 100;
  }
  .cc-logo-wrap { display: flex; align-items: center; gap: 12px; }
  .cc-logo {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: #F8C72E;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .cc-logo .cc-yorkmade { font-size: 10px; color: #E63329; text-align: center; line-height: 0.9; }
  .cc-tagline { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 2px; }
  .cc-nav { display: flex; gap: 28px; align-items: center; font-size: 14px; font-weight: 500; }
  .cc-nav a { color: #1A1A1A; text-decoration: none; }
  .cc-nav a.active { color: #E63329; font-weight: 600; }
  .cc-nav .cc-btn-yellow {
    font-size: 12px;
    padding: 10px 20px;
    border: 2px solid #1A1A1A;
    transition: all 0.2s;
  }
  .cc-nav .cc-btn-yellow:hover {
    background: #1A1A1A;
    color: #F8C72E;
  }

  /* ============================================
     SECTION 1 : HERO COMPACT
     ============================================ */
  .cc-hero {
    background: #F8C72E;
    padding: 80px 40px 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cc-hero::before {
    content: '';
    position: absolute;
    top: -80px; left: -80px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: rgba(230, 51, 41, 0.1);
  }
  .cc-hero::after {
    content: '';
    position: absolute;
    bottom: -100px; right: -100px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
  }
  .cc-breadcrumb {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1A1A1A;
    margin-bottom: 22px;
    position: relative; z-index: 2;
  }
  .cc-breadcrumb a { color: #1A1A1A; text-decoration: none; opacity: 0.6; }
  .cc-hero h1 {
    font-size: 88px;
    line-height: 0.95;
    color: #1A1A1A;
    margin-bottom: 18px;
    position: relative; z-index: 2;
  }
  .cc-hero p {
    font-size: 19px;
    max-width: 600px;
    margin: 0 auto;
    color: #1A1A1A;
    position: relative; z-index: 2;
  }
  .cc-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    position: relative; z-index: 2;
  }
  .cc-hero-stat {
    background: #1A1A1A;
    color: #F8C72E;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .cc-hero-stat strong {
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 18px;
    color: #F8C72E;
  }

  /* ============================================
     SECTION 2 : GALERIE FILTRABLE
     ============================================ */
  .cc-gallery {
    background: #FDF6EC;
    padding: 90px 40px;
  }
  .cc-gallery-header {
    text-align: center;
    margin-bottom: 40px;
  }
  .cc-gallery-header h2 {
    font-size: 56px;
    line-height: 1;
    margin-bottom: 16px;
  }
  .cc-gallery-header p {
    font-size: 16px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Filtre par catégorie */
  .cc-gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
  .cc-filter-btn {
    background: transparent;
    color: #1A1A1A;
    border: 2px solid #1A1A1A;
    padding: 9px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
  }
  .cc-filter-btn:hover {
    background: #1A1A1A;
    color: #F8C72E;
  }
  .cc-filter-btn.active {
    background: #F8C72E;
    color: #1A1A1A;
    border-color: #1A1A1A;
  }
  .cc-filter-btn .cc-filter-count {
    background: rgba(0,0,0,0.1);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
  }
  .cc-filter-btn.active .cc-filter-count {
    background: #1A1A1A;
    color: #F8C72E;
  }

  /* Grille masonry */
  .cc-gallery-grid {
    column-count: 4;
    column-gap: 14px;
    max-width: 1280px;
    margin: 0 auto;
  }
  .cc-gallery-item {
    break-inside: avoid;
    margin-bottom: 14px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
    display: block;
    background-color: #888;
  }
  .cc-gallery-item:hover { transform: scale(1.015); }
  .cc-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: filter 0.3s;
  }
  .cc-gallery-item:hover img { filter: brightness(0.7); }

  /* Overlay au hover */
  .cc-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .cc-gallery-item:hover .cc-gallery-overlay { opacity: 1; }
  .cc-gallery-category {
    background: #F8C72E;
    color: #1A1A1A;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    width: fit-content;
    margin-bottom: 10px;
  }
  .cc-gallery-title {
    color: #fff;
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 18px;
    text-transform: lowercase;
    line-height: 1.1;
    margin-bottom: 4px;
  }
  .cc-gallery-meta {
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .cc-gallery-meta span { display: inline-flex; align-items: center; gap: 4px; }

  /* Badge catégorie permanent (visible avant hover) */
  .cc-gallery-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: rgba(26,26,26,0.85);
    color: #F8C72E;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    z-index: 2;
  }

  /* ============================================
     SECTION 3 : TÉMOIGNAGES
     ============================================ */
  .cc-testimonials {
    background: #fff;
    padding: 100px 40px;
    position: relative;
  }
  .cc-testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .cc-testimonials-script {
    font-family: 'Brush Script MT', cursive;
    font-size: 32px;
    color: #E63329;
    margin-bottom: 10px;
  }
  .cc-testimonials-header h2 {
    font-size: 56px;
    line-height: 1;
    margin-bottom: 16px;
  }

  .cc-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
  }
  .cc-testimonial-card {
    background: #FDF6EC;
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
  }
  .cc-testimonial-card:hover {
    transform: translateY(-4px);
    border-color: #F8C72E;
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  }
  .cc-testimonial-card::before {
    content: '"';
    position: absolute;
    top: 12px; right: 24px;
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 80px;
    color: #F8C72E;
    line-height: 1;
  }
  .cc-testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px;
    color: #F8C72E;
    position: relative; z-index: 2;
  }
  .cc-testimonial-stars i { font-size: 18px; }
  .cc-testimonial-quote {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
    position: relative; z-index: 2;
  }
  .cc-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(0,0,0,0.08);
  }
  .cc-testimonial-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: #E63329;
    color: #fff;
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    flex-shrink: 0;
  }
  .cc-testimonial-avatar.cc-avatar-yellow { background: #F8C72E; color: #1A1A1A; }
  .cc-testimonial-avatar.cc-avatar-dark { background: #1A1A1A; color: #F8C72E; }
  .cc-testimonial-name {
    font-size: 14px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 2px;
  }
  .cc-testimonial-event {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }

  /* ============================================
     SECTION 4 : ILS PARLENT DE NOUS (PRESSE)
     ============================================ */
  .cc-press {
    background: #1A1A1A;
    color: #fff;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
  }
  .cc-press::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(248, 199, 46, 0.05);
  }
  .cc-press-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .cc-press-header .cc-label-section { color: #F8C72E; }
  .cc-press-header h2 {
    color: #fff;
    font-size: 56px;
    line-height: 1;
    margin-bottom: 16px;
  }
  .cc-press-header p {
    color: rgba(255,255,255,0.75);
    font-size: 16px;
  }

  .cc-press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .cc-press-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 26px 26px 24px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .cc-press-card:hover {
    border-color: #F8C72E;
    background: rgba(248, 199, 46, 0.05);
    transform: translateY(-4px);
  }
  .cc-press-publication {
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 22px;
    color: #F8C72E;
    text-transform: lowercase;
    margin-bottom: 18px;
    line-height: 1;
  }
  .cc-press-divider {
    width: 32px;
    height: 2px;
    background: #E63329;
    margin-bottom: 16px;
  }
  .cc-press-title {
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 20px;
    flex: 1;
  }
  .cc-press-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .cc-press-date {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }
  .cc-press-link {
    font-size: 11px;
    color: #F8C72E;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .cc-press-card:hover .cc-press-link i { transform: translate(2px, -2px); }
  .cc-press-link i { transition: transform 0.2s; }

  /* ============================================
     SECTION 5 : CTA FINAL
     ============================================ */
  .cc-cta-final {
    background: #F8C72E;
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cc-cta-final::before {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(230, 51, 41, 0.08);
  }
  .cc-cta-final-script {
    font-family: 'Brush Script MT', cursive;
    font-size: 32px;
    color: #E63329;
    margin-bottom: 12px;
    position: relative; z-index: 1;
  }
  .cc-cta-final h2 {
    font-size: 72px;
    line-height: 1;
    color: #1A1A1A;
    margin-bottom: 20px;
    position: relative; z-index: 1;
  }
  .cc-cta-final p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 36px;
    color: #444;
    position: relative; z-index: 1;
  }
  .cc-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative; z-index: 1;
  }

  /* ===== FOOTER ===== */
  .cc-footer {
    background: #1A1A1A;
    color: #fff;
    padding: 60px 40px 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .cc-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto; margin-right: auto;
  }
  .cc-footer h5 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #F8C72E;
    margin-bottom: 16px;
  }
  .cc-footer-links { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 2; }
  .cc-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    max-width: 1200px;
    margin: 0 auto;
  }
  .cc-social { display: flex; gap: 12px; }
  .cc-social div {
    width: 38px; height: 38px;
    background: #F8C72E;
    color: #1A1A1A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1100px) {
    .cc-gallery-grid { column-count: 3; }
    .cc-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .cc-press-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 800px) {
    .cc-hero h1 { font-size: 56px; }
    .cc-hero-stats { flex-direction: column; gap: 12px; align-items: center; }
    .cc-gallery-grid { column-count: 2; }
    .cc-gallery-header h2, .cc-testimonials-header h2,
    .cc-press-header h2 { font-size: 38px; }
    .cc-cta-final h2 { font-size: 48px; }
    .cc-testimonials-grid, .cc-press-grid { grid-template-columns: 1fr; }
    .cc-footer-grid { grid-template-columns: 1fr; }
    .cc-nav { display: none; }
    .cc-gallery, .cc-testimonials, .cc-press, .cc-cta-final { padding: 60px 20px; }
    .cc-filter-btn { font-size: 12px; padding: 7px 14px; }
  }
  @media (max-width: 480px) {
    .cc-gallery-grid { column-count: 1; }
    .cc-hero h1 { font-size: 42px; }
  }

/* ===================== BLOG (liste) ===================== */
.cc-yorkmade {
    font-family: 'Yorkmade', 'Bowlby One SC', Impact, sans-serif;
    letter-spacing: 0.5px;
    text-transform: lowercase;
    font-weight: 400;
  }

  .cc-red { color: #E63329; }
  .cc-yellow { color: #F8C72E; }
  .cc-container { max-width: 1280px; margin: 0 auto; }
  .cc-label-section {
    color: #E63329;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
  }

  /* ===== BOUTONS ===== */
  .cc-btn-red {
    background: #E63329; color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none; cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .cc-btn-red:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(230, 51, 41, 0.3); }
  .cc-btn-yellow {
    background: #F8C72E; color: #1A1A1A;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  .cc-btn-dark {
    background: #1A1A1A; color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 8px;
  }

  /* ===== HEADER ===== */
  .cc-header {
    background: #fff;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #1A1A1A;
    position: sticky; top: 0; z-index: 100;
  }
  .cc-logo-wrap { display: flex; align-items: center; gap: 12px; }
  .cc-logo {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: #F8C72E;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .cc-logo .cc-yorkmade { font-size: 10px; color: #E63329; text-align: center; line-height: 0.9; }
  .cc-tagline { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 2px; }
  .cc-nav { display: flex; gap: 28px; align-items: center; font-size: 14px; font-weight: 500; }
  .cc-nav a { color: #1A1A1A; text-decoration: none; }
  .cc-nav a.active { color: #E63329; font-weight: 600; }
  .cc-nav .cc-btn-yellow {
    font-size: 12px;
    padding: 10px 20px;
    border: 2px solid #1A1A1A;
    transition: all 0.2s;
  }
  .cc-nav .cc-btn-yellow:hover {
    background: #1A1A1A;
    color: #F8C72E;
  }

  /* ============================================
     SECTION 1 : HERO BLOG avec la COCOTTE mascotte
     ============================================ */
  .cc-blog-hero {
    background: #F8C72E;
    padding: 70px 40px 80px;
    position: relative;
    overflow: hidden;
  }
  .cc-blog-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .cc-blog-hero::before {
    content: '';
    position: absolute;
    top: -80px; left: -80px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: rgba(230, 51, 41, 0.1);
    z-index: 1;
  }

  .cc-breadcrumb {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1A1A1A;
    margin-bottom: 20px;
  }
  .cc-breadcrumb a { color: #1A1A1A; text-decoration: none; opacity: 0.6; }

  .cc-blog-hero-text h1 {
    font-size: 100px;
    line-height: 0.9;
    color: #1A1A1A;
    margin-bottom: 20px;
  }
  .cc-blog-hero-text .cc-script {
    font-family: 'Brush Script MT', cursive;
    font-size: 30px;
    color: #E63329;
    margin-bottom: 10px;
  }
  .cc-blog-hero-text p {
    font-size: 18px;
    color: #1A1A1A;
    max-width: 540px;
    line-height: 1.6;
  }

  /* La cocotte mascotte */
  .cc-cocotte-mascot {
    position: relative;
    text-align: center;
  }
  .cc-cocotte-mascot img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transform: rotate(2deg);
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
  }
  .cc-cocotte-mascot img:hover { transform: rotate(0deg) scale(1.02); }

  /* Bulle de dialogue de la cocotte */
  .cc-cocotte-bubble {
    position: absolute;
    top: -10px; left: -90px;
    background: #1A1A1A;
    color: #fff;
    padding: 14px 18px;
    border-radius: 18px;
    font-family: 'Brush Script MT', cursive;
    font-size: 22px;
    transform: rotate(-6deg);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 5;
  }
  .cc-cocotte-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px; right: 30px;
    width: 0; height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #1A1A1A;
    transform: rotate(8deg);
  }

  /* ============================================
     SECTION 2 : ARTICLE À LA UNE
     ============================================ */
  .cc-featured-article {
    padding: 80px 40px 40px;
    background: #FDF6EC;
  }
  .cc-featured-label {
    text-align: center;
    margin-bottom: 30px;
  }
  .cc-featured-label .cc-script {
    font-family: 'Brush Script MT', cursive;
    font-size: 26px;
    color: #E63329;
    display: block;
    margin-bottom: 4px;
  }
  .cc-featured-label .cc-label-section {
    display: block;
    margin: 0;
  }

  .cc-featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .cc-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
  }
  .cc-featured-img {
    min-height: 400px;
    background-image: url('https://images.unsplash.com/photo-1565299543923-37dd37887442?w=900');
    background-color: #D4A574;
    background-size: cover;
    background-position: center;
  }
  .cc-featured-content {
    padding: 50px 50px 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .cc-featured-category {
    background: #E63329;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    width: fit-content;
    margin-bottom: 18px;
  }
  .cc-featured-card h2 {
    font-size: 44px;
    line-height: 1.05;
    margin-bottom: 16px;
    color: #1A1A1A;
  }
  .cc-featured-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .cc-article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
  }
  .cc-article-meta i { color: #E63329; font-size: 14px; }
  .cc-article-meta span { display: inline-flex; align-items: center; gap: 5px; }

  /* ============================================
     SECTION 3 : GRILLE D'ARTICLES
     ============================================ */
  .cc-blog-list {
    padding: 60px 40px 100px;
    background: #FDF6EC;
  }
  .cc-blog-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
    gap: 20px;
  }
  .cc-blog-list-header h3 {
    font-size: 36px;
    line-height: 1;
  }

  /* Filtres catégories */
  .cc-blog-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .cc-filter-btn {
    background: transparent;
    color: #1A1A1A;
    border: 2px solid #1A1A1A;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    font-family: inherit;
  }
  .cc-filter-btn:hover {
    background: #1A1A1A;
    color: #F8C72E;
  }
  .cc-filter-btn.active {
    background: #F8C72E;
    color: #1A1A1A;
    border-color: #1A1A1A;
  }

  /* Grille articles */
  .cc-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1280px;
    margin: 0 auto;
  }
  .cc-article-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    border: 3px solid transparent;
  }
  .cc-article-card:hover {
    transform: translateY(-6px);
    border-color: #F8C72E;
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  }
  .cc-article-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #D4A574;
  }
  .cc-article-card-category {
    position: absolute;
    top: 14px; left: 14px;
    background: #F8C72E;
    color: #1A1A1A;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }
  .cc-article-card-category.cat-red { background: #E63329; color: #fff; }
  .cc-article-card-category.cat-dark { background: #1A1A1A; color: #F8C72E; }
  .cc-article-card-content {
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .cc-article-card h4 {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #1A1A1A;
    font-weight: 600;
  }
  .cc-article-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
  }
  .cc-article-card .cc-article-meta {
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.08);
  }

  /* Pagination */
  .cc-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 50px;
  }
  .cc-pagination a, .cc-pagination span {
    background: #fff;
    border: 2px solid #1A1A1A;
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-decoration: none;
    color: #1A1A1A;
    font-size: 14px;
    transition: all 0.2s;
  }
  .cc-pagination a:hover { background: #1A1A1A; color: #F8C72E; }
  .cc-pagination .active { background: #F8C72E; }

  /* ============================================
     SECTION 4 : NEWSLETTER
     ============================================ */
  .cc-newsletter {
    background: #1A1A1A;
    color: #fff;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
  }
  .cc-newsletter::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(248, 199, 46, 0.05);
  }
  .cc-newsletter-grid {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .cc-newsletter .cc-script {
    font-family: 'Brush Script MT', cursive;
    font-size: 28px;
    color: #F8C72E;
    margin-bottom: 8px;
  }
  .cc-newsletter h2 {
    color: #fff;
    font-size: 48px;
    line-height: 1;
    margin-bottom: 16px;
  }
  .cc-newsletter p {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 28px;
  }
  .cc-newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  .cc-newsletter-form input {
    flex: 1;
    min-width: 240px;
    padding: 14px 20px;
    border-radius: 40px;
    border: 2px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 14px;
    font-family: inherit;
  }
  .cc-newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
  .cc-newsletter-form input:focus {
    outline: none;
    border-color: #F8C72E;
  }
  .cc-newsletter-form button {
    background: #F8C72E;
    color: #1A1A1A;
    border: none;
    padding: 14px 26px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
  }

  /* ===== FOOTER ===== */
  .cc-footer {
    background: #1A1A1A;
    color: #fff;
    padding: 60px 40px 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .cc-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto; margin-right: auto;
  }
  .cc-footer h5 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #F8C72E;
    margin-bottom: 16px;
  }
  .cc-footer-links { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 2; }
  .cc-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    max-width: 1200px;
    margin: 0 auto;
  }
  .cc-social { display: flex; gap: 12px; }
  .cc-social div {
    width: 38px; height: 38px;
    background: #F8C72E;
    color: #1A1A1A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .cc-blog-grid { grid-template-columns: repeat(2, 1fr); }
    .cc-blog-hero-text h1 { font-size: 72px; }
    .cc-featured-card { grid-template-columns: 1fr; }
    .cc-featured-content { padding: 40px; }
    .cc-featured-card h2 { font-size: 32px; }
  }
  @media (max-width: 800px) {
    .cc-blog-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .cc-blog-hero-text h1 { font-size: 56px; }
    .cc-cocotte-mascot { max-width: 280px; margin: 0 auto; }
    .cc-cocotte-bubble { left: -20px; font-size: 18px; }
    .cc-blog-grid { grid-template-columns: 1fr; }
    .cc-newsletter h2 { font-size: 36px; }
    .cc-blog-list-header { flex-direction: column; align-items: flex-start; }
    .cc-footer-grid { grid-template-columns: 1fr; }
    .cc-nav { display: none; }
    .cc-blog-hero, .cc-blog-list, .cc-newsletter, .cc-featured-article { padding: 60px 24px; }
  }

/* ===================== BLOG (article) ===================== */
.cc-yorkmade {
    font-family: 'Yorkmade', 'Bowlby One SC', Impact, sans-serif;
    letter-spacing: 0.5px;
    text-transform: lowercase;
    font-weight: 400;
  }

  .cc-red { color: #E63329; }
  .cc-yellow { color: #F8C72E; }

  /* ===== BOUTONS ===== */
  .cc-btn-yellow {
    background: #F8C72E; color: #1A1A1A;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  .cc-btn-red {
    background: #E63329; color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  .cc-btn-outline {
    background: transparent; color: #1A1A1A;
    border: 2px solid #1A1A1A;
    padding: 12px 26px;
    border-radius: 40px;
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  /* ===== HEADER ===== */
  .cc-header {
    background: #fff;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #1A1A1A;
    position: sticky; top: 0; z-index: 100;
  }
  .cc-logo-wrap { display: flex; align-items: center; gap: 12px; }
  .cc-logo {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: #F8C72E;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .cc-logo .cc-yorkmade { font-size: 10px; color: #E63329; text-align: center; line-height: 0.9; }
  .cc-tagline { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 2px; }
  .cc-nav { display: flex; gap: 28px; align-items: center; font-size: 14px; font-weight: 500; }
  .cc-nav a { color: #1A1A1A; text-decoration: none; }
  .cc-nav a.active { color: #E63329; font-weight: 600; }
  .cc-nav .cc-btn-yellow {
    font-size: 12px;
    padding: 10px 20px;
    border: 2px solid #1A1A1A;
    transition: all 0.2s;
  }
  .cc-nav .cc-btn-yellow:hover {
    background: #1A1A1A;
    color: #F8C72E;
  }

  /* ============================================
     SECTION 1 : HERO ARTICLE
     ============================================ */
  .cc-article-hero {
    background: #1A1A1A;
    color: #fff;
    padding: 60px 40px 80px;
    position: relative;
    overflow: hidden;
  }
  .cc-article-hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50%; height: 100%;
    background-image: url('https://images.unsplash.com/photo-1565299543923-37dd37887442?w=1200');
    background-size: cover;
    background-position: center;
    opacity: 0.45;
  }
  .cc-article-hero::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, #1A1A1A 0%, transparent 100%);
  }
  .cc-article-hero-content {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .cc-breadcrumb {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 28px;
  }
  .cc-breadcrumb a { color: rgba(255,255,255,0.85); text-decoration: none; }
  .cc-breadcrumb a:hover { color: #F8C72E; }

  .cc-article-category {
    display: inline-block;
    background: #E63329;
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 22px;
  }
  .cc-article-title {
    font-size: 64px;
    line-height: 1.05;
    margin-bottom: 24px;
    max-width: 800px;
    color: #fff;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
  }
  .cc-article-excerpt {
    font-size: 19px;
    color: rgba(255,255,255,0.85);
    max-width: 700px;
    line-height: 1.5;
    margin-bottom: 32px;
  }
  .cc-article-hero-meta {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
  }
  .cc-hero-author {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .cc-hero-author-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: #F8C72E;
    color: #1A1A1A;
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
  }
  .cc-hero-author-name { font-size: 13px; font-weight: 600; color: #fff; }
  .cc-hero-author-role { font-size: 11px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1.5px; }

  .cc-hero-meta-item {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
  }
  .cc-hero-meta-item i { color: #F8C72E; font-size: 16px; }

  /* ============================================
     SECTION 2 : ARTICLE + SOMMAIRE
     ============================================ */
  .cc-article-section {
    background: #FDF6EC;
    padding: 70px 40px 100px;
  }
  .cc-article-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 80px;
    max-width: 1240px;
    margin: 0 auto;
    align-items: start;
  }

  /* === SOMMAIRE (TOC) === */
  .cc-toc {
    position: sticky;
    top: 100px;
    align-self: start;
  }
  .cc-toc-title {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    color: #E63329;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .cc-toc-title i { font-size: 16px; }
  .cc-toc-list { list-style: none; padding: 0; margin: 0; }
  .cc-toc-list li { margin: 0; }
  .cc-toc-list a {
    display: block;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 0 8px 14px;
    border-left: 2px solid rgba(0,0,0,0.1);
    line-height: 1.4;
    transition: all 0.2s;
  }
  .cc-toc-list a:hover {
    color: #1A1A1A;
    border-left-color: #F8C72E;
  }
  .cc-toc-list a.active {
    color: #1A1A1A;
    font-weight: 600;
    border-left-color: #E63329;
  }
  .cc-toc-list .cc-toc-sub a {
    font-size: 13px;
    padding-left: 26px;
    color: #888;
  }
  .cc-toc-progress {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
  }

  /* === ARTICLE BODY === */
  .cc-article-body {
    max-width: 720px;
  }
  .cc-article-body h2 {
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 38px;
    text-transform: lowercase;
    line-height: 1;
    margin: 50px 0 22px;
    color: #1A1A1A;
    font-weight: 400;
    letter-spacing: 0.5px;
  }
  .cc-article-body h2:first-child { margin-top: 0; }
  .cc-article-body h3 {
    font-size: 22px;
    line-height: 1.3;
    margin: 36px 0 14px;
    color: #1A1A1A;
    font-weight: 600;
  }
  .cc-article-body p {
    font-size: 17px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 22px;
  }
  .cc-article-body p strong { color: #1A1A1A; font-weight: 700; }
  .cc-article-body p em { color: #E63329; font-style: italic; }

  /* Lettrine sur le premier paragraphe */
  .cc-article-body .cc-intro::first-letter {
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 64px;
    color: #E63329;
    float: left;
    line-height: 0.85;
    margin: 6px 10px 0 0;
    text-transform: lowercase;
  }

  /* Listes */
  .cc-article-body ul, .cc-article-body ol {
    margin: 0 0 24px 0;
    padding-left: 0;
    list-style: none;
  }
  .cc-article-body ul li {
    font-size: 17px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
  }
  .cc-article-body ul li::before {
    content: '★';
    color: #E63329;
    font-size: 16px;
    position: absolute;
    left: 0; top: 2px;
  }
  .cc-article-body ol {
    counter-reset: cc-counter;
  }
  .cc-article-body ol li {
    font-size: 17px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 14px;
    padding-left: 42px;
    position: relative;
    counter-increment: cc-counter;
  }
  .cc-article-body ol li::before {
    content: counter(cc-counter);
    background: #F8C72E;
    color: #1A1A1A;
    width: 28px; height: 28px;
    border-radius: 50%;
    position: absolute;
    left: 0; top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 14px;
    font-weight: 700;
  }

  /* Bloc citation / callout */
  .cc-callout {
    background: #1A1A1A;
    color: #fff;
    padding: 28px 30px;
    border-radius: 16px;
    margin: 30px 0;
    position: relative;
    padding-left: 70px;
  }
  .cc-callout::before {
    content: '💡';
    position: absolute;
    left: 22px; top: 26px;
    font-size: 28px;
  }
  .cc-callout-title {
    color: #F8C72E;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .cc-callout p {
    color: rgba(255,255,255,0.9) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    margin: 0 !important;
  }

  /* Pull quote */
  .cc-pullquote {
    margin: 40px 0;
    padding: 30px 0;
    border-top: 2px solid #F8C72E;
    border-bottom: 2px solid #F8C72E;
    font-style: italic;
    text-align: center;
  }
  .cc-pullquote p {
    font-size: 24px !important;
    line-height: 1.4 !important;
    color: #1A1A1A !important;
    font-weight: 500;
    margin: 0 !important;
  }
  .cc-pullquote::before {
    content: '"';
    display: block;
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 50px;
    color: #E63329;
    line-height: 0.5;
    margin-bottom: 12px;
  }

  /* Image avec légende */
  .cc-article-figure {
    margin: 36px 0;
  }
  .cc-article-figure img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
  }
  .cc-article-figure figcaption {
    font-size: 13px;
    color: #888;
    text-align: center;
    margin-top: 12px;
    font-style: italic;
  }

  /* Tags article */
  .cc-article-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 40px 0 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.1);
  }
  .cc-tag {
    background: #fff;
    color: #1A1A1A;
    border: 2px solid #1A1A1A;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
  }
  .cc-tag:hover { background: #F8C72E; }

  /* === ENCART AUTEUR === */
  .cc-author-box {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 24px;
    align-items: start;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  }
  .cc-author-photo {
    width: 130px; height: 130px;
    border-radius: 16px;
    background-image: url('https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=400');
    background-size: cover;
    background-position: center;
    background-color: #E63329;
  }
  .cc-author-info { flex: 1; }
  .cc-author-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    flex-wrap: wrap;
  }
  .cc-author-name {
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 26px;
    text-transform: lowercase;
    color: #1A1A1A;
    line-height: 1;
  }
  .cc-author-divider {
    width: 2px; height: 18px;
    background: #1A1A1A;
  }
  .cc-author-role {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
  }
  .cc-author-bio {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
  }
  .cc-author-bio a {
    color: #E63329;
    font-weight: 600;
    text-decoration: none;
  }
  .cc-author-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
  }
  .cc-author-tag {
    background: #FDF6EC;
    color: #1A1A1A;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.06);
  }

  /* Boutons partage */
  .cc-article-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
  }
  .cc-share-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    font-weight: 600;
  }
  .cc-share-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A1A1A;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 16px;
  }
  .cc-share-btn:hover { background: #F8C72E; border-color: #1A1A1A; }

  /* ============================================
     SECTION 3 : ENCART COCOTTE (fin d'article)
     ============================================ */
  .cc-cocotte-band {
    background: #F8C72E;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
  }
  .cc-cocotte-band::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(230, 51, 41, 0.08);
  }
  .cc-cocotte-band-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 50px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .cc-cocotte-mini {
    position: relative;
  }
  .cc-cocotte-mini img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    transform: rotate(-4deg);
    position: relative;
    z-index: 2;
  }
  .cc-cocotte-bubble-mini {
    position: absolute;
    top: -25px; right: -30px;
    background: #1A1A1A;
    color: #fff;
    padding: 10px 14px;
    border-radius: 14px;
    font-family: 'Brush Script MT', cursive;
    font-size: 18px;
    transform: rotate(8deg);
    z-index: 5;
    white-space: nowrap;
  }

  .cc-cocotte-band-text h3 {
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 36px;
    text-transform: lowercase;
    line-height: 1.05;
    margin-bottom: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
  }
  .cc-cocotte-band-text p {
    font-size: 16px;
    color: #1A1A1A;
    margin-bottom: 22px;
  }
  .cc-cocotte-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  /* ============================================
     SECTION 4 : ARTICLES SIMILAIRES
     ============================================ */
  .cc-related {
    background: #FDF6EC;
    padding: 80px 40px;
  }
  .cc-related-header {
    text-align: center;
    margin-bottom: 50px;
  }
  .cc-related-header h2 {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 12px;
  }
  .cc-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .cc-related-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
  }
  .cc-related-card:hover {
    transform: translateY(-6px);
    border-color: #F8C72E;
  }
  .cc-related-card-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #D4A574;
  }
  .cc-related-card-cat {
    position: absolute;
    top: 12px; left: 12px;
    background: #F8C72E;
    color: #1A1A1A;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }
  .cc-related-content { padding: 22px; flex: 1; display: flex; flex-direction: column; }
  .cc-related-content h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .cc-related-meta {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.06);
    font-weight: 600;
  }

  /* ===== FOOTER ===== */
  .cc-footer {
    background: #1A1A1A;
    color: #fff;
    padding: 60px 40px 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .cc-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto; margin-right: auto;
  }
  .cc-footer h5 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #F8C72E;
    margin-bottom: 16px;
  }
  .cc-footer-links { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 2; }
  .cc-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    max-width: 1200px;
    margin: 0 auto;
  }
  .cc-social { display: flex; gap: 12px; }
  .cc-social div {
    width: 38px; height: 38px;
    background: #F8C72E;
    color: #1A1A1A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .cc-article-grid { grid-template-columns: 1fr; gap: 40px; }
    .cc-toc {
      position: relative;
      top: auto;
      background: #fff;
      padding: 24px;
      border-radius: 16px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    }
    .cc-article-title { font-size: 48px; }
    .cc-related-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 800px) {
    .cc-article-title { font-size: 36px; }
    .cc-article-body h2 { font-size: 28px; }
    .cc-article-body h3 { font-size: 19px; }
    .cc-article-body p { font-size: 16px; }
    .cc-author-box { grid-template-columns: 1fr; text-align: center; }
    .cc-author-photo { margin: 0 auto; }
    .cc-author-header { justify-content: center; }
    .cc-cocotte-band-grid { grid-template-columns: 1fr; text-align: center; }
    .cc-cocotte-mini { max-width: 200px; margin: 0 auto; }
    .cc-related-grid { grid-template-columns: 1fr; }
    .cc-footer-grid { grid-template-columns: 1fr; }
    .cc-nav { display: none; }
    .cc-article-hero, .cc-article-section, .cc-cocotte-band, .cc-related { padding: 50px 24px; }
    .cc-article-hero::before { width: 100%; opacity: 0.2; }
    .cc-article-hero::after { background: linear-gradient(180deg, transparent 0%, #1A1A1A 60%); width: 100%; }
  }

/* ===================== CONTACT ===================== */
.cc-yorkmade {
    font-family: 'Yorkmade', 'Bowlby One SC', Impact, sans-serif;
    letter-spacing: 0.5px;
    text-transform: lowercase;
    font-weight: 400;
  }

  .cc-red { color: #E63329; }
  .cc-yellow { color: #F8C72E; }
  .cc-container { max-width: 1280px; margin: 0 auto; }
  .cc-label-section {
    color: #E63329;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
  }

  /* ===== BOUTONS ===== */
  .cc-btn-red {
    background: #E63329; color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none; cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: inherit;
  }
  .cc-btn-red:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(230, 51, 41, 0.3); }
  .cc-btn-yellow {
    background: #F8C72E; color: #1A1A1A;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  /* ===== HEADER ===== */
  .cc-header {
    background: #fff;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #1A1A1A;
    position: sticky; top: 0; z-index: 100;
  }
  .cc-logo-wrap { display: flex; align-items: center; gap: 12px; }
  .cc-logo {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: #F8C72E;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .cc-logo .cc-yorkmade { font-size: 10px; color: #E63329; text-align: center; line-height: 0.9; }
  .cc-tagline { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 2px; }
  .cc-nav { display: flex; gap: 28px; align-items: center; font-size: 14px; font-weight: 500; }
  .cc-nav a { color: #1A1A1A; text-decoration: none; }
  .cc-nav a.active { color: #E63329; font-weight: 600; }
  .cc-nav .cc-btn-yellow {
    font-size: 12px;
    padding: 10px 20px;
    border: 2px solid #1A1A1A;
    transition: all 0.2s;
  }
  .cc-nav .cc-btn-yellow:hover {
    background: #1A1A1A;
    color: #F8C72E;
  }

  /* ============================================
     SECTION 1 : HERO avec image + parallax
     ============================================ */
  .cc-hero {
    background-image:
      linear-gradient(180deg, rgba(26,26,26,0.4) 0%, rgba(26,26,26,0.65) 100%),
      url('https://images.unsplash.com/photo-1565299507177-b0ac66763828?w=1920');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 110px 40px 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 380px;
  }
  .cc-breadcrumb {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 22px;
    position: relative; z-index: 2;
  }
  .cc-breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
  .cc-breadcrumb a:hover { color: #F8C72E; }
  .cc-hero h1 {
    font-size: 88px;
    line-height: 0.95;
    color: #fff;
    margin-bottom: 18px;
    position: relative; z-index: 2;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
  }
  .cc-hero h1 .cc-red { color: #F8C72E; }
  .cc-hero p {
    font-size: 19px;
    max-width: 620px;
    margin: 0 auto;
    color: rgba(255,255,255,0.95);
    position: relative; z-index: 2;
  }

  /* ============================================
     SECTION 2 : FORMULAIRE + COORDONNÉES
     ============================================ */
  .cc-contact-section {
    background: #FDF6EC;
    padding: 90px 40px;
  }
  .cc-contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* === FORMULAIRE === */
  .cc-form-wrap {
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  }
  .cc-form-header {
    margin-bottom: 32px;
  }
  .cc-form-header h2 {
    font-size: 42px;
    line-height: 1;
    margin-bottom: 10px;
  }
  .cc-form-header p {
    font-size: 15px;
    color: #666;
  }

  .cc-contact-form {
    display: grid;
    gap: 18px;
  }
  .cc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .cc-form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
  }
  .cc-form-field { display: flex; flex-direction: column; gap: 8px; }
  .cc-form-field label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1A1A1A;
  }
  .cc-form-field label .cc-required {
    color: #E63329;
    margin-left: 2px;
  }

  .cc-form-field input,
  .cc-form-field select,
  .cc-form-field textarea {
    background: #FDF6EC;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 13px 16px;
    font-size: 15px;
    color: #1A1A1A;
    font-family: inherit;
    transition: all 0.2s;
    width: 100%;
  }
  .cc-form-field input:focus,
  .cc-form-field select:focus,
  .cc-form-field textarea:focus {
    outline: none;
    border-color: #F8C72E;
    background: #fff;
  }
  .cc-form-field input::placeholder,
  .cc-form-field textarea::placeholder {
    color: #aaa;
  }
  .cc-form-field textarea {
    min-height: 130px;
    resize: vertical;
    font-family: inherit;
  }
  .cc-form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23000' viewBox='0 0 24 24'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M19 9l-7 7-7-7'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
  }

  /* Section conditionnelle "infos évènement" */
  .cc-form-event-section {
    background: #FDF6EC;
    padding: 22px;
    border-radius: 14px;
    border: 1px dashed #E63329;
    margin-top: 8px;
  }
  .cc-form-event-label {
    font-size: 12px;
    color: #E63329;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .cc-form-event-section input {
    background: #fff;
  }

  /* RGPD */
  .cc-form-rgpd {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: #FDF6EC;
    border-radius: 12px;
  }
  .cc-form-rgpd input[type="checkbox"] {
    width: 20px; height: 20px;
    margin: 0;
    flex-shrink: 0;
    accent-color: #E63329;
    cursor: pointer;
  }
  .cc-form-rgpd label {
    font-size: 13px;
    color: #555;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
    line-height: 1.5;
    cursor: pointer;
  }
  .cc-form-rgpd label a {
    color: #E63329;
    font-weight: 600;
    text-decoration: none;
  }
  .cc-form-rgpd label a:hover { text-decoration: underline; }

  /* Submit */
  .cc-form-submit-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
  }
  .cc-form-required-note {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }
  .cc-form-required-note .cc-required { color: #E63329; }

  .cc-submit-btn {
    background: #E63329;
    color: #fff;
    border: none;
    padding: 16px 36px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    transition: all 0.2s;
  }
  .cc-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 51, 41, 0.3);
  }

  /* === SIDEBAR COORDONNÉES === */
  .cc-contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .cc-contact-card {
    background: #fff;
    border-radius: 18px;
    padding: 26px 24px;
    transition: all 0.3s;
    border: 2px solid transparent;
  }
  .cc-contact-card:hover {
    border-color: #F8C72E;
    transform: translateY(-2px);
  }
  .cc-contact-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
  }
  .cc-contact-card-icon {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: #F8C72E;
    color: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
  }
  .cc-contact-card-icon.icon-red { background: #E63329; color: #fff; }
  .cc-contact-card-icon.icon-dark { background: #1A1A1A; color: #F8C72E; }
  .cc-contact-card-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    font-weight: 700;
    margin-bottom: 2px;
  }
  .cc-contact-card-value {
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 22px;
    text-transform: lowercase;
    color: #1A1A1A;
    line-height: 1.1;
  }
  .cc-contact-card-value.value-medium {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: none;
  }
  .cc-contact-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
  }
  .cc-contact-card a {
    color: #E63329;
    text-decoration: none;
    font-weight: 600;
  }
  .cc-contact-card-social {
    display: flex;
    gap: 10px;
    margin-top: 6px;
  }
  .cc-social-btn {
    width: 38px; height: 38px;
    background: #1A1A1A;
    color: #F8C72E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s;
  }
  .cc-social-btn:hover { transform: scale(1.1); }
  .cc-social-btn i { font-size: 18px; }

  /* ============================================
     SECTION 3 : FAQ RAPIDE
     ============================================ */
  .cc-faq {
    background: #fff;
    padding: 90px 40px;
  }
  .cc-faq-header {
    text-align: center;
    margin-bottom: 50px;
  }
  .cc-faq-header h2 {
    font-size: 56px;
    line-height: 1;
    margin-bottom: 12px;
  }
  .cc-faq-header p {
    font-size: 16px;
    color: #666;
  }
  .cc-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .cc-faq-item {
    background: #FDF6EC;
    border-radius: 16px;
    padding: 22px 24px;
    border-left: 4px solid #F8C72E;
  }
  .cc-faq-item-question {
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 18px;
    text-transform: lowercase;
    color: #1A1A1A;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.2;
  }
  .cc-faq-item-question::before {
    content: 'Q';
    background: #E63329;
    color: #fff;
    width: 22px; height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .cc-faq-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-left: 32px;
  }

  /* ===== FOOTER ===== */
  .cc-footer {
    background: #1A1A1A;
    color: #fff;
    padding: 60px 40px 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .cc-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto; margin-right: auto;
  }
  .cc-footer h5 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #F8C72E;
    margin-bottom: 16px;
  }
  .cc-footer-links { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 2; }
  .cc-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    max-width: 1200px;
    margin: 0 auto;
  }
  .cc-social { display: flex; gap: 12px; }
  .cc-social div {
    width: 38px; height: 38px;
    background: #F8C72E;
    color: #1A1A1A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .cc-contact-grid { grid-template-columns: 1fr; }
    .cc-hero h1 { font-size: 64px; }
  }
  @media (max-width: 800px) {
    .cc-hero { background-attachment: scroll; padding: 80px 24px 90px; }
    .cc-hero h1 { font-size: 48px; }
    .cc-form-wrap { padding: 30px 24px; }
    .cc-form-row, .cc-form-row-3 { grid-template-columns: 1fr; }
    .cc-faq-header h2 { font-size: 38px; }
    .cc-faq-grid { grid-template-columns: 1fr; }
    .cc-footer-grid { grid-template-columns: 1fr; }
    .cc-nav { display: none; }
    .cc-contact-section, .cc-faq { padding: 60px 24px; }
    .cc-form-submit-wrap { flex-direction: column-reverse; align-items: stretch; }
    .cc-submit-btn { justify-content: center; }
    .cc-form-required-note { text-align: center; }
  }

/* ===================== 404 ===================== */
.cc-yorkmade {
    font-family: 'Yorkmade', 'Bowlby One SC', Impact, sans-serif;
    letter-spacing: 0.5px;
    text-transform: lowercase;
    font-weight: 400;
  }

  .cc-red { color: #E63329; }
  .cc-yellow { color: #F8C72E; }

  /* ===== BOUTONS ===== */
  .cc-btn-red {
    background: #E63329; color: #fff;
    padding: 16px 32px;
    border-radius: 40px;
    font-weight: 700;
    display: inline-flex; align-items: center; gap: 10px;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none; cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .cc-btn-red:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(230, 51, 41, 0.35); }
  .cc-btn-yellow {
    background: #F8C72E; color: #1A1A1A;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  /* ===== HEADER ===== */
  .cc-header {
    background: #fff;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #1A1A1A;
  }
  .cc-logo-wrap { display: flex; align-items: center; gap: 12px; }
  .cc-logo {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: #F8C72E;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .cc-logo .cc-yorkmade { font-size: 10px; color: #E63329; text-align: center; line-height: 0.9; }
  .cc-tagline { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 2px; }
  .cc-nav { display: flex; gap: 28px; align-items: center; font-size: 14px; font-weight: 500; }
  .cc-nav a { color: #1A1A1A; text-decoration: none; }
  .cc-nav .cc-btn-yellow {
    font-size: 12px;
    padding: 10px 20px;
    border: 2px solid #1A1A1A;
    transition: all 0.2s;
  }
  .cc-nav .cc-btn-yellow:hover {
    background: #1A1A1A;
    color: #F8C72E;
  }

  /* ============================================
     LA PAGE 404
     ============================================ */
  .cc-404 {
    min-height: calc(100vh - 90px);
    background: #F8C72E;
    position: relative;
    overflow: hidden;
    padding: 60px 40px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Décorations de fond */
  .cc-404::before {
    content: '';
    position: absolute;
    top: -150px; left: -150px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(230, 51, 41, 0.08);
    z-index: 1;
  }
  .cc-404::after {
    content: '';
    position: absolute;
    bottom: -180px; right: -180px;
    width: 480px; height: 480px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    z-index: 1;
  }

  .cc-404-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    max-width: 1100px;
    align-items: center;
    width: 100%;
  }

  /* Côté gauche : le contenu */
  .cc-404-text {
    text-align: left;
  }

  /* Le gros 404 */
  .cc-404-number {
    font-family: 'Bowlby One SC', Impact, sans-serif;
    font-size: 280px;
    line-height: 0.8;
    color: #E63329;
    text-transform: lowercase;
    letter-spacing: -8px;
    margin-bottom: 8px;
    text-shadow:
      6px 6px 0 #1A1A1A,
      6px 6px 0 #1A1A1A;
    position: relative;
    display: inline-block;
  }
  /* Petite étiquette "oups" qui dépasse */
  .cc-404-stamp {
    position: absolute;
    top: 30px; right: -50px;
    background: #1A1A1A;
    color: #F8C72E;
    padding: 8px 20px;
    border-radius: 30px;
    font-family: 'Brush Script MT', cursive;
    font-size: 32px;
    transform: rotate(12deg);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }

  .cc-404-title {
    font-size: 56px;
    line-height: 0.95;
    margin-bottom: 18px;
    color: #1A1A1A;
  }

  .cc-404-sub {
    font-size: 19px;
    color: #1A1A1A;
    margin-bottom: 32px;
    max-width: 540px;
    line-height: 1.6;
  }

  .cc-404-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
  }

  /* Mini bandeau "essayez plutôt" */
  .cc-404-suggest {
    background: rgba(26,26,26,0.06);
    border-left: 3px solid #1A1A1A;
    padding: 18px 22px;
    border-radius: 6px;
    margin-top: 10px;
  }
  .cc-404-suggest-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1A1A1A;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .cc-404-suggest-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .cc-404-suggest-links a {
    background: #fff;
    border: 2px solid #1A1A1A;
    color: #1A1A1A;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
  }
  .cc-404-suggest-links a:hover {
    background: #E63329;
    color: #fff;
    border-color: #E63329;
  }

  /* Côté droit : la cocotte */
  .cc-404-cocotte {
    position: relative;
    text-align: center;
  }
  .cc-404-cocotte img {
    width: 100%;
    max-width: 360px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    transform: rotate(-3deg);
  }

  /* Bulle de la cocotte paumée */
  .cc-404-bubble {
    position: absolute;
    top: -20px; left: -50px;
    background: #1A1A1A;
    color: #fff;
    padding: 16px 22px;
    border-radius: 18px;
    font-family: 'Brush Script MT', cursive;
    font-size: 24px;
    transform: rotate(-8deg);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 3;
    max-width: 250px;
    line-height: 1.2;
  }
  .cc-404-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px; right: 40px;
    width: 0; height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid #1A1A1A;
  }

  /* ===== FOOTER (allégé sur 404) ===== */
  .cc-footer-mini {
    background: #1A1A1A;
    color: #fff;
    padding: 22px 40px;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
  }
  .cc-footer-mini a {
    color: #F8C72E;
    text-decoration: none;
    margin: 0 8px;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .cc-404-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .cc-404-text { text-align: center; }
    .cc-404-number { font-size: 220px; }
    .cc-404-title { font-size: 42px; }
    .cc-404-sub { margin-left: auto; margin-right: auto; }
    .cc-404-actions { justify-content: center; }
    .cc-404-cocotte { max-width: 280px; margin: 0 auto; }
    .cc-404-bubble { left: -20px; font-size: 20px; }
  }
  @media (max-width: 700px) {
    .cc-404 { padding: 50px 24px; }
    .cc-404-number { font-size: 160px; letter-spacing: -4px; text-shadow: 4px 4px 0 #1A1A1A; }
    .cc-404-stamp { top: 18px; right: -10px; font-size: 22px; padding: 5px 14px; }
    .cc-404-title { font-size: 32px; }
    .cc-404-sub { font-size: 16px; }
    .cc-404-bubble { font-size: 17px; padding: 12px 16px; left: 0; max-width: 200px; }
    .cc-nav { display: none; }
  }

/* ==========================================================
   SCOPE : PAGE CRÊPES & GALETTES (overrides ciblés)
   ========================================================== */

/* --- HERO --- */
.cc-page-crepes-galettes .cc-hero {
  background: #FDF6EC !important;
  background-image: none !important;
  background-attachment: scroll !important;
  text-align: left !important;
  padding: 60px 40px 70px !important;  /* on remonte le bloc */
}
.cc-page-crepes-galettes .cc-hero.has-bg-image {
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
}
.cc-page-crepes-galettes .cc-hero h1 { color: #1A1A1A !important; }
.cc-page-crepes-galettes .cc-hero h1 .cc-red { color: #E63329 !important; }
.cc-page-crepes-galettes .cc-hero h1 .cc-yellow { color: #F8C72E !important; }
.cc-page-crepes-galettes .cc-hero p,
.cc-page-crepes-galettes .cc-hero-subtitle,
.cc-page-crepes-galettes .cc-hero-subtitle p { color: #1A1A1A !important; }
.cc-page-crepes-galettes .cc-hero.has-bg-image h1,
.cc-page-crepes-galettes .cc-hero.has-bg-image p,
.cc-page-crepes-galettes .cc-hero.has-bg-image .cc-hero-subtitle,
.cc-page-crepes-galettes .cc-hero.has-bg-image .cc-breadcrumb,
.cc-page-crepes-galettes .cc-hero.has-bg-image .cc-breadcrumb a { color: #fff !important; }

/* Suppression du trait rouge à gauche du sous-titre */
.cc-page-crepes-galettes .cc-hero-subtitle::before { display: none !important; }
.cc-page-crepes-galettes .cc-hero-subtitle { padding-left: 0 !important; }

/* Suppression de TOUTES les ombres dans le hero */
.cc-page-crepes-galettes .cc-hero,
.cc-page-crepes-galettes .cc-hero *,
.cc-page-crepes-galettes .cc-hero-badge,
.cc-page-crepes-galettes .cc-hero-title {
  text-shadow: none !important;
  box-shadow: none !important;
}

/* Fil d'Ariane plus visible (gris foncé) + aligné à gauche */
.cc-page-crepes-galettes .cc-breadcrumb { text-align: left !important; color: #555; }
.cc-page-crepes-galettes .cc-breadcrumb a { color: #555 !important; opacity: 1; }
.cc-page-crepes-galettes .cc-breadcrumb a:hover { color: #1A1A1A !important; }

/* Label hero légèrement plus grand */
.cc-page-crepes-galettes .cc-label-section { font-size: 14px; letter-spacing: 3.5px; }

/* --- BADGES : on annule le position:absolute hérité d'un autre mockup --- */
.cc-page-crepes-galettes .cc-hero-badge {
  position: static !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  background: #fff !important;
  color: #1A1A1A !important;
  border: 2px solid #1A1A1A !important;
  border-radius: 40px !important;
  padding: 10px 18px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: none !important;
}
.cc-page-crepes-galettes .cc-hero-badges {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: 24px !important;
  position: static !important;
}

/* --- PRODUITS : alternance crème/blanc par catégorie --- */
.cc-page-crepes-galettes .cc-menu-section { padding: 70px 40px; }
.cc-page-crepes-galettes .cc-menu-section.cat-galette { background: #FDF6EC; }
.cc-page-crepes-galettes .cc-menu-section.cat-crepe { background: #ffffff; }
.cc-page-crepes-galettes .cc-menu-section.cat-special { background: #F8C72E; }

/* --- CTA noir --- */
.cc-page-crepes-galettes .cc-cta-final {
  background: #1A1A1A !important;
  color: #fff !important;
}
.cc-page-crepes-galettes .cc-cta-final h2,
.cc-page-crepes-galettes .cc-cta-final .cc-cta-final-subtitle,
.cc-page-crepes-galettes .cc-cta-final p,
.cc-page-crepes-galettes .cc-cta-final div { color: #fff !important; }
.cc-page-crepes-galettes .cc-cta-final .cc-cta-final-subtitle { color: #F8C72E !important; }
.cc-page-crepes-galettes .cc-cta-final .cc-red,
.cc-page-crepes-galettes .cc-cta-final .cc-yellow { color: #F8C72E !important; }
.cc-page-crepes-galettes .cc-cta-final .cc-btn-outline {
  color: #fff !important;
  border-color: #fff !important;
}
.cc-page-crepes-galettes .cc-cta-final .cc-btn-outline:hover {
  background: #fff !important;
  color: #1A1A1A !important;
}

/* ==========================================================
   SCOPE : PAGE D'ACCUEIL (responsive)
   ========================================================== */
@media (max-width: 800px) {
  .cc-page-home section h1 { font-size: 52px !important; }
  .cc-page-home section h2 { font-size: 32px !important; }
  .cc-page-home section[style*="grid-template-columns:1fr 1fr"],
  .cc-page-home section > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .cc-page-home section[style*="grid-template-columns:repeat(4"] > div,
  .cc-page-home section > div[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ==========================================================
   SCOPE : PAGE PRIVATISATION — icônes "validation" en inclus
   ========================================================== */
.cc-page-privatisation .cc-included-item-icon {
  width: 44px !important;
  height: 44px !important;
  background: #FDF6EC !important;   /* crème (fond Cocottes) */
  color: #16A34A !important;        /* check vert rassurant */
}

/* CTA devis : fond noir par défaut. Si une image est uploadée, l'inline-style
   l'applique. On utilise background-color au lieu du shorthand 'background'
   pour ne PAS forcer background-image:none avec !important. */
.cc-page-privatisation .cc-cta-devis {
  background-color: #1A1A1A !important;
  color: #fff !important;
}
.cc-page-privatisation .cc-cta-devis.has-parallax {
  background-attachment: fixed !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.cc-page-privatisation .cc-cta-devis h2,
.cc-page-privatisation .cc-cta-devis p,
.cc-page-privatisation .cc-cta-devis div { color: #fff !important; }
.cc-page-privatisation .cc-cta-devis .cc-cta-devis-script { color: #F8C72E !important; }
.cc-page-privatisation .cc-cta-devis .cc-yellow { color: #F8C72E !important; }

/* ==========================================================
   SCOPE : PAGE CONTACT
   Le mockup contact définit .cc-hero avec un fond burger.
   On laisse ça uniquement si l'utilisateur upload une image,
   sinon on bascule sur le fond crème.
   ========================================================== */
.cc-page-contact .cc-hero:not(.has-bg-image) {
  background-color: #FDF6EC !important;
  background-image: none !important;
}
.cc-page-contact .cc-hero:not(.has-bg-image),
.cc-page-contact .cc-hero:not(.has-bg-image) h1,
.cc-page-contact .cc-hero:not(.has-bg-image) p,
.cc-page-contact .cc-hero:not(.has-bg-image) .cc-breadcrumb,
.cc-page-contact .cc-hero:not(.has-bg-image) .cc-breadcrumb a { color: #1A1A1A !important; }

.cc-page-contact .cc-hero.has-bg-image,
.cc-page-contact .cc-hero.has-bg-image h1,
.cc-page-contact .cc-hero.has-bg-image p,
.cc-page-contact .cc-hero.has-bg-image .cc-breadcrumb,
.cc-page-contact .cc-hero.has-bg-image .cc-breadcrumb a { color: #fff !important; }

/* Le mockup contact force ".cc-hero h1 .cc-red { color: #F8C72E }" (jaune).
   On rétablit la cohérence : .cc-red = rouge, .cc-yellow = jaune. */
.cc-page-contact .cc-hero h1 .cc-red { color: #E63329 !important; }
.cc-page-contact .cc-hero h1 .cc-yellow { color: #F8C72E !important; }

/* ==========================================================
   SCOPE : PAGE GALERIE & TÉMOIGNAGES
   Le mockup galerie définit .cc-hero avec sa propre image de fond.
   On bascule sur fond crème si pas d'image custom uploadée.
   ========================================================== */
.cc-page-galerie .cc-hero:not(.has-bg-image) {
  background-color: #FDF6EC !important;
  background-image: none !important;
}
.cc-page-galerie .cc-hero:not(.has-bg-image),
.cc-page-galerie .cc-hero:not(.has-bg-image) h1,
.cc-page-galerie .cc-hero:not(.has-bg-image) p,
.cc-page-galerie .cc-hero:not(.has-bg-image) .cc-breadcrumb,
.cc-page-galerie .cc-hero:not(.has-bg-image) .cc-breadcrumb a,
.cc-page-galerie .cc-hero:not(.has-bg-image) .cc-hero-stat { color: #1A1A1A !important; }

.cc-page-galerie .cc-hero.has-bg-image,
.cc-page-galerie .cc-hero.has-bg-image h1,
.cc-page-galerie .cc-hero.has-bg-image p,
.cc-page-galerie .cc-hero.has-bg-image .cc-breadcrumb,
.cc-page-galerie .cc-hero.has-bg-image .cc-breadcrumb a,
.cc-page-galerie .cc-hero.has-bg-image .cc-hero-stat { color: #fff !important; }

/* Couleurs **mots** dans le hero (override la règle jaune que ce mockup
   pose sur .cc-hero h1 .cc-red) */
.cc-page-galerie .cc-hero h1 .cc-red { color: #E63329 !important; }
.cc-page-galerie .cc-hero h1 .cc-yellow { color: #F8C72E !important; }

/* CTA final : si une autre page (Crêpes & galettes) a forcé .cc-cta-final
   en jaune ou noir, on s'assure que la version galerie reste sur sa propre
   couleur (jaune, fidèle au mockup) */
.cc-page-galerie .cc-cta-final {
  background-color: #F8C72E !important;
  color: #1A1A1A !important;
}
.cc-page-galerie .cc-cta-final h2,
.cc-page-galerie .cc-cta-final p,
.cc-page-galerie .cc-cta-final div { color: #1A1A1A !important; }
