/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

/*
 * ═══════════════════════════════════════════════════════════════════
 *  LA GIRELLE-PAON — CSS pour OceanWP / Elementor
 *  Coller dans : Apparence > Personnaliser > CSS additionnel
 *  Ou via : Extensions > WPCode ou Code Snippets (recommandé)
 * ═══════════════════════════════════════════════════════════════════
 *
 *  IMPORTANT : Les images locales ont été uploadées dans
 *  Médias > Ajouter > dossier MVP_site/images/
 *  et les chemins dans les JSON pointent vers :
 *  /wp-content/uploads/girelle-paon/[nom-du-fichier]
 *  → Créer un sous-dossier "girelle-paon" dans wp-content/uploads
 *    et y uploader toutes les images du dossier MVP_site/images/
 * ═══════════════════════════════════════════════════════════════════
 */

/* ── 0. RESET MINIMAL COMPATIBLE OCEANWP ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }


/* ══════════════════════════════════════════════════════════════════
   CSS COMPLET DU SITE (variables, composants, sections, responsive)
   ══════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   La Girelle-Paon — CSS Global + Patch Elementor
   Coller dans : Apparence → Personnaliser → CSS supplémentaire
   ═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { font-size: 16px; }
  body { font-family: 'Inter', sans-serif; color: #1A1A1A; background: #fff; line-height: 1.6; overflow-x: hidden; }

  /* Focus visible pour navigation clavier */
  :focus-visible { outline: 2px solid var(--bleu); outline-offset: 3px; border-radius: 3px; }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }

  :root {
    --bleu:   #0068B0;
    --clair:  #D2F1F3;
    --moyen:  #8EDDE1;
    --jaune:  #EFB23E;
    --sable:  #FEF4E4;
    --peche:  #FDEBD0;
    --vert-pale: #E2F5ED;   /* Lieu — vert pastel doux, ton #00AA78 désaturé */
    --noir:   #1A1A1A;
    --blanc:  #FFFFFF;
    --r:      6px;
    --shadow: 0 2px 16px rgba(0,104,176,.10);
    --shadow-warm: 0 2px 16px rgba(239,178,62,.18);
    --t:      .22s ease;
    --orange:     #E84818;
    --bleu-ciel:  #0098C0;
    --bleu-fonce: #005490;
    --gris-1: #444;
    --gris-2: #555;
    --gris-3: #666;
    --gris-4: #888;
    --gris-5: #aaa;
  }

  /* ── IMAGES ── */
  .img-cover { width:100%; height:100%; object-fit:cover; object-position:center; display:block; }
  .logo__img { width:36px; height:36px; object-fit:contain; flex-shrink:0; }
  .hero__photo { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 30%; z-index:0; opacity:.18; mix-blend-mode:luminosity; }
  .atelier-card__thumb img { width:100%; height:100%; object-fit:cover; object-position:center; transition:transform .4s ease; }
  .atelier-card:hover .atelier-card__thumb img { transform:scale(1.05); }
  .boutique__photo img { width:100%; height:100%; object-fit:cover; object-position:center; transition:transform .4s ease; }
  .boutique__photo:hover img { transform:scale(1.04); }
  .lieu__photo img { width:100%; height:100%; object-fit:cover; object-position:center; transition:transform .5s ease; }
  .lieu__photo:hover img { transform:scale(1.03); }
  .histoire__img-main img { width:100%; height:100%; object-fit:cover; object-position:center; }
  .histoire__img-accent img { width:100%; height:100%; object-fit:cover; object-position:center 20%; }

  /* ── TYPO ── */
  h1,h2,h3,h4 { font-family:'Playfair Display',Georgia,serif; font-weight:600; line-height:1.2; }
  h1 { font-size:clamp(2.2rem,5.5vw,4rem); }
  h2 { font-size:clamp(1.7rem,3.8vw,2.6rem); }
  h3 { font-size:clamp(1.1rem,2.2vw,1.4rem); }
  p  { line-height:1.75; color:#2e2e2e; }
  .lead { font-size:1.1rem; line-height:1.8; }

  /* ── LAYOUT ── */
  .container { max-width:1200px; margin:0 auto; padding:0 32px; }
  .section   { padding:100px 0; }
  .section--sm { padding:60px 0; }
  .text-center { text-align:center; }
  .badge {
    display:inline-block; font-size:.72rem; font-weight:700;
    letter-spacing:.1em; text-transform:uppercase;
    color:var(--bleu); background:var(--clair);
    padding:4px 14px; border-radius:20px; margin-bottom:16px;
  }
  .badge--warm {
    color:#7a4e00; background:#fdeec8;
  }
  .badge--vert {
    color:#005a38; background:#d0f0e2; border-color:#00AA78;
  }

  /* Caveat tag — style global utilisé dans newsletter et avis */
  .caveat-tag { font-family:'Caveat',cursive; font-size:1.3rem; color:rgba(0,0,0,.45); display:block; margin-bottom:10px; }

  /* ── BOUTONS ── */
  .btn {
    display:inline-flex; align-items:center; gap:8px;
    height:52px; padding:0 28px;
    font-family:'Inter',sans-serif; font-size:.95rem; font-weight:500;
    border-radius:var(--r); border:2px solid transparent;
    cursor:pointer; transition:all var(--t); white-space:nowrap;
  }
  .btn--primary { background:var(--bleu); color:#fff; border-color:var(--bleu); }
  .btn--primary:hover { background:#005490; border-color:#005490; }
  .btn--outline { background:transparent; color:var(--bleu); border-color:var(--bleu); }
  .btn--outline:hover { background:var(--bleu); color:#fff; }
  .btn--outline-white { background:transparent; color:#fff; border-color:rgba(255,255,255,.7); }
  .btn--outline-white:hover { background:#fff; color:var(--noir); }
  .btn--warm { background:var(--jaune); color:var(--noir); border-color:var(--jaune); }
  .btn--warm:hover { background:#d99a28; border-color:#d99a28; }

  /* ── BOUTONS CTA + NAV-CTA — bordure dégradée via background-clip ── */
  /* Technique background-clip: padding-box/border-box — sans z-index, sans overflow:hidden */
  .btn--nav-cta,
  .btn--cta {
    border: 2px solid transparent;
    border-radius: 50px;
    background-image:
      linear-gradient(var(--bleu), var(--bleu)),
      linear-gradient(-45deg, #EFB23E, var(--orange), #0068B0, var(--bleu-ciel), #EFB23E);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-size: 100% 100%, 400% 400%;
    animation: ctaGradient 5s linear infinite;
    color: #fff; font-weight: 600; letter-spacing: .02em;
    transition: filter var(--t), transform var(--t);
  }
  .btn--nav-cta:hover,
  .btn--cta:hover     { filter: brightness(0.82); transform: translateY(-2px); }
  .btn--nav-cta::before, .btn--cta::before,
  .btn--nav-cta::after,  .btn--cta::after  { display: none; }
  .btn--cta:active { transform: translateY(0); }

  @keyframes ctaGradient {
    0%   { background-position:   0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position:   0% 50%; }
  }

    /* ── TOPBAR ── */
  .topbar { background:#001e3c; color:rgba(255,255,255,.8); font-size:.82rem; padding:8px 0; text-align:center; letter-spacing:.03em; }
  .topbar a { color:rgba(255,255,255,.9); text-decoration:underline; }
  .topbar a:hover { color:#fff; }

  /* ── HEADER ── */
  .header { position:sticky; top:0; z-index:100; background:#fff; border-bottom:1px solid rgba(0,104,176,.12); box-shadow:0 1px 12px rgba(0,104,176,.07); }
  .header__inner { display:flex; align-items:center; justify-content:space-between; height:68px; gap:16px; flex-wrap:nowrap; }
  .logo { font-family:'Playfair Display',serif; font-size:1.15rem; font-weight:700; color:var(--noir); line-height:1.1; display:flex; align-items:center; gap:8px; white-space:nowrap; flex-shrink:0; }
  .logo span { display:block; font-size:.58rem; font-family:'Inter',sans-serif; font-weight:400; letter-spacing:.1em; text-transform:uppercase; color:var(--bleu); margin-top:1px; white-space:nowrap; }
  .nav { display:flex; align-items:center; gap:4px; flex-wrap:nowrap; }
  .nav__link { font-size:.84rem; font-weight:500; color:var(--noir); position:relative; padding:6px 10px; white-space:nowrap; transition:color var(--t); }
  .nav__link::after { content:''; position:absolute; bottom:-2px; left:0; width:0; height:1.5px; transition:width var(--t); background:var(--bleu); }
  .nav__link:hover::after { width:100%; }
  /* Couleur par section — même palette que les tuiles */
  .nav a.nav__link:nth-child(1):hover { color:#C83010; }
  .nav a.nav__link:nth-child(1)::after { background:#E84818; }
  .nav a.nav__link:nth-child(2):hover { color:#A07000; }
  .nav a.nav__link:nth-child(2)::after { background:#EFB23E; }
  .nav a.nav__link:nth-child(3):hover { color:#007A50; }
  .nav a.nav__link:nth-child(3)::after { background:#00AA78; }
  .nav a.nav__link:nth-child(4):hover { color:#0068B0; }
  .nav a.nav__link:nth-child(4)::after { background:#0098C0; }
  .nav a.nav__link:nth-child(5):hover { color:#444; }
  .nav a.nav__link:nth-child(5)::after { background:#888; }
  .hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; }
  .hamburger span { width:24px; height:2px; background:var(--noir); border-radius:2px; }

  /* ── HERO ── */
  .hero { position:relative; min-height:85vh; display:flex; align-items:flex-end; padding-bottom:80px; overflow:hidden; background:#001a3a; }

  /*
   * Gradient animé — 7 tons de la girelle-paon (Thalassoma pavo) :
   * cobalt (tête) → turquoise (corps) → émeraude (bandes) →
   * vert-citron (ventre) → or/ambre (lignes) →
   * orange-vermillon (bandes lat.) → magenta-rose (queue)
   */
  .hero::before {
    content:'';
    position:absolute; inset:0;
    z-index:0;
    background-image: linear-gradient(135deg,
      #003B8E,   /* cobalt profond    */
      #0098C0,   /* turquoise vif     */
      #00AA78,   /* vert-teal         */
      #78C820,   /* vert-citron       */
      #EFB23E,   /* or ambre (brand)  */
      #E84818,   /* orange-vermillon  */
      #B81878,   /* magenta-rose      */
      #003B8E    /* boucle            */
    );
    background-size: 700% 700%;
    animation: girellePaon 26s ease infinite;
  }
  @keyframes girellePaon {
    0%   { background-position:  0%  50%; }
    14%  { background-position: 16%  30%; }
    28%  { background-position: 32%  70%; }
    42%  { background-position: 50%  20%; }
    56%  { background-position: 68%  80%; }
    72%  { background-position: 84%  40%; }
    86%  { background-position: 96%  60%; }
    100% { background-position:  0%  50%; }
  }

  /* Photo en texture semi-transparente par-dessus le gradient */
  .hero__art { position:absolute; inset:0; z-index:1; overflow:hidden; }
  .hero__bg {
    position:absolute; inset:0;
    background:
      linear-gradient(160deg,rgba(0,10,30,.35) 0%,transparent 55%),
      linear-gradient(to bottom,rgba(0,0,0,.05) 0%,rgba(0,8,22,.88) 100%);
    z-index:2;
  }
  .hero__content { position:relative; z-index:3; color:#fff; max-width:680px; padding:0 32px; }
  .hero__eyebrow { font-family:'Caveat',cursive; font-size:1.4rem; color:var(--jaune); margin-bottom:20px; display:block; opacity:.95; }
  .hero h1 {
    color: #fff !important;
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: clamp(2.4rem, 4.2vw, 3.8rem) !important;
    line-height: 1.1 !important;
    font-weight: 700 !important;
    letter-spacing: -.02em !important;
    margin-bottom: 24px !important;
  }
  .hero h1 em { color:#EFB23E !important; font-style:italic !important; }
  .hero__sub { font-size: clamp(.92rem, 1.3vw, 1.05rem) !important; color:rgba(255,255,255,.85) !important; line-height:1.75 !important; margin-bottom:40px !important; max-width:520px !important; }
  .hero__scroll { position:absolute; bottom:28px; right:40px; z-index:3; display:flex; flex-direction:column; align-items:center; gap:8px; color:rgba(255,255,255,.5); font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; }
  .hero__scroll-line { width:1px; height:44px; background:linear-gradient(to bottom,rgba(255,255,255,.5),transparent); animation:scrollDown 1.8s ease-in-out infinite; }
  @keyframes scrollDown { 0%,100%{transform:scaleY(1);opacity:1;} 50%{transform:scaleY(.5);opacity:.4;} }

  /* ── 4 PORTES ── */
  .portes { background:var(--sable); position:relative; overflow:hidden; }
  .portes::before {
    content:'';
    position:absolute; inset:0; z-index:0; pointer-events:none;
    /* 5 tons pastels désaturés du poisson — subtils sur fond sable */
    background-image: linear-gradient(120deg,
      #FEF4E4,   /* sable base        */
      #DFF5EE,   /* turquoise pâle    */
      #FEF4E4,   /* sable             */
      #FDE8C8,   /* ambre pâle        */
      #F0E4F8,   /* lilas pâle        */
      #FEF4E4    /* retour sable      */
    );
    background-size: 500% 500%;
    animation: sectionWarm 40s ease infinite;
    opacity: .85;
  }
  .portes .container { position:relative; z-index:1; }
  @keyframes sectionWarm {
    0%   { background-position: 0%   50%; }
    33%  { background-position: 100% 50%; }
    66%  { background-position: 50%  100%; }
    100% { background-position: 0%   50%; }
  }
  .portes__intro { text-align:center; margin-bottom:60px; }
  .portes__grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
  .porte-card {
    background:#fff; border-radius:14px; padding:0;
    border:1px solid rgba(0,104,176,.10); transition:all var(--t); cursor:pointer;
    position:relative; overflow:hidden; display:flex; flex-direction:column;
    box-shadow:0 2px 6px rgba(0,0,0,.05), 0 6px 24px rgba(0,104,176,.09), inset 0 1px 0 rgba(255,255,255,.9);
  }
  /* Gloss sheen diagonal — effet 3D subtil */
  .porte-card::before {
    content:''; position:absolute; inset:0; pointer-events:none; z-index:4; border-radius:inherit;
    background:linear-gradient(135deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,.08) 32%, transparent 60%);
    transition:opacity var(--t);
  }
  .porte-card:hover::before { opacity:.55; }
  .porte-card::after { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; transform:scaleX(0); transition:transform var(--t); transform-origin:left; z-index:5; }
  .porte-card:nth-child(1)::after { background:#E84818; }   /* rouge  — Ateliers        */
  .porte-card:nth-child(2)::after { background:#EFB23E; }   /* jaune  — Boutique        */
  .porte-card:nth-child(3)::after { background:#00AA78; }   /* vert   — Le Lieu         */
  .porte-card:nth-child(4)::after { background:#0098C0; }   /* bleu clair — Services    */
  .porte-card:hover { transform:translateY(-8px); box-shadow:0 4px 12px rgba(0,0,0,.08), 0 14px 44px rgba(0,104,176,.15), inset 0 1px 0 rgba(255,255,255,.9); }
  .porte-card:hover::after { transform:scaleX(1); }
  /* Vignette image */
  .porte-card__thumb { height:220px; overflow:hidden; flex-shrink:0; position:relative; }
  .porte-card__thumb img { width:100%; height:100%; object-fit:cover; transition:transform .45s ease; display:block; }
  .porte-card__thumb img.contain { object-fit:contain; background:#f0ede8; }
  .porte-card:hover .porte-card__thumb img { transform:scale(1.06); }
  /* Overlay couleur par tuile — tons du gradient hero */
  .porte-card__thumb::after {
    content:''; position:absolute; inset:0; pointer-events:none;
    opacity:.28; transition:opacity var(--t);
  }
  .porte-card:hover .porte-card__thumb::after { opacity:.18; }
  .porte-card:nth-child(1) .porte-card__thumb::after { background:#E84818; }   /* rouge-orange — Ateliers */
  .porte-card:nth-child(2) .porte-card__thumb::after { background:#EFB23E; }   /* jaune        — Boutique */
  .porte-card:nth-child(3) .porte-card__thumb::after { background:#00AA78; }   /* vert-teal    — Le Lieu  */
  .porte-card:nth-child(4) .porte-card__thumb::after { background:#0098C0; }   /* turquoise    — Services */
  /* Corps texte */
  .porte-card__body { padding:22px 24px 28px; flex:1; display:flex; flex-direction:column; }
  .porte-card h3 { margin-bottom:8px; font-size:1rem; }
  .porte-card p { font-size:.875rem; color:#444; line-height:1.65; margin-bottom:18px; flex:1; }
  .porte-card__link { font-size:.875rem; font-weight:500; display:inline-flex; align-items:center; gap:6px; transition:gap var(--t); margin-top:auto; }
  .porte-card:nth-child(1) .porte-card__link { color:#C83010; }  /* rouge foncé  — Ateliers */
  .porte-card:nth-child(2) .porte-card__link { color:#A07000; }  /* ambre foncé  — Boutique */
  .porte-card:nth-child(3) .porte-card__link { color:#007A50; }  /* vert foncé   — Le Lieu  */
  .porte-card:nth-child(4) .porte-card__link { color:#0068B0; }  /* bleu brand   — Services */
  .porte-card:hover .porte-card__link { gap:10px; }

  /* ── HISTOIRE ── */
  .histoire { background:#fff; }
  .histoire__grid { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
  .histoire__visual { position:relative; overflow:visible; }
  .histoire__img-main { width:100%; aspect-ratio:4/5; border-radius:8px; overflow:hidden; }
  .histoire__img-accent { position:absolute; bottom:-24px; right:-24px; width:46%; aspect-ratio:1; border-radius:8px; border:5px solid var(--jaune); overflow:hidden; box-shadow:var(--shadow-warm); }
  .histoire__content h2 { margin-bottom:20px; }
  .histoire__content p { margin-bottom:16px; }
  .histoire__quote { margin:24px 0; padding:18px 22px; border-left:3px solid var(--jaune); background:var(--peche); border-radius:0 6px 6px 0; font-family:'Playfair Display',serif; font-style:italic; font-size:1rem; color:var(--noir); line-height:1.7; }
  .histoire__tags { display:flex; flex-wrap:wrap; gap:8px; margin:24px 0; }
  .tag { font-size:.8rem; font-weight:500; padding:6px 14px; border-radius:20px; border:1.5px solid; }
  .tag--bleu  { color:#005490; border-color:var(--bleu); background:var(--clair); }
  .tag--jaune { color:#8a6c00; border-color:var(--jaune); background:#fdeec8; }

  /* ── ATELIERS ── */
  .ateliers { background:#FEF4E4; position:relative; overflow:hidden; }
  /* Transition douce depuis la section précédente */
  .ateliers::before { content:''; position:absolute; top:-60px; left:0; right:0; height:120px; background:#fff; clip-path:ellipse(55% 100% at 50% 0%); z-index:1; }
  /* Gradient animé chaud derrière le contenu */
  .ateliers::after {
    content:'';
    position:absolute; inset:0; z-index:0; pointer-events:none;
    /* 7 tons pastels chauds — vert-citron et magenta pâles pour rappeler le poisson */
    background-image: linear-gradient(125deg,
      #FEF4E4,   /* sable base        */
      #FDEBD0,   /* pêche             */
      #FDE2C0,   /* ambre pâle        */
      #EDFAEC,   /* vert-lime pâle    */
      #FEF4E4,   /* sable             */
      #FCEAF5,   /* rose-magenta pâle */
      #FDEBD0    /* pêche retour      */
    );
    background-size: 600% 600%;
    animation: sectionWarm 32s ease infinite reverse;
  }
  .ateliers .container { position:relative; z-index:2; }
  .ateliers__grid { position:relative; z-index:2; }
  .ateliers__tarifs { position:relative; z-index:2; }
  .ateliers__cta { position:relative; z-index:2; }
  .ateliers__header { text-align:center; margin-bottom:56px; position:relative; z-index:1; }
  .ateliers__header p { max-width:560px; margin:12px auto 0; color:#444; }
  .ateliers__grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; position:relative; z-index:1; }
  .atelier-card { background:#fff; border-radius:8px; overflow:hidden; box-shadow:0 1px 12px rgba(0,104,176,.08); transition:all var(--t); }
  .atelier-card:hover { transform:translateY(-5px); box-shadow:0 8px 32px rgba(0,104,176,.16); }
  .atelier-card__thumb { height:200px; position:relative; overflow:hidden; }
  .atelier-card__badge { position:absolute; top:12px; left:12px; font-size:.7rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; padding:4px 10px; border-radius:20px; background:rgba(255,255,255,.92); color:var(--noir); z-index:1; }
  /* Badge couleurs par public / type — palette girelle-paon */
  .atelier-card__badge--adultes  { background:#003B8E; color:#fff; }
  .atelier-card__badge--mixte    { background:#0098C0; color:#fff; }
  .atelier-card__badge--enfants  { background:#B81878; color:#fff; }
  .atelier-card__badge--lino     { background:#00AA78; color:#fff; }
  .atelier-card__badge--stage    { background:#E84818; color:#fff; }
  /* Bandeau ÉTÉ 2026 — coin supérieur droit des cartes été */
  .atelier-card__ete-ribbon {
    position:absolute; top:10px; right:10px; z-index:2;
    background:linear-gradient(135deg, #B87A0A 0%, #EFB23E 55%, #C8900A 100%);
    color:#fff; font-size:.6rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
    padding:4px 10px; border-radius:20px; white-space:nowrap;
    box-shadow:0 2px 8px rgba(180,120,10,.35); text-shadow:0 1px 1px rgba(0,0,0,.12);
  }
  /* Curseur pointer sur les cards avec lien */
  .atelier-card[data-href] { cursor:pointer; }
  .atelier-card__body { padding:22px; }
  .atelier-card h3 { font-size:1.05rem; margin-bottom:8px; }
  .atelier-card p { font-size:.875rem; color:#444; line-height:1.6; margin-bottom:14px; }
  .atelier-card__meta { display:flex; justify-content:space-between; align-items:center; padding-top:12px; border-top:1px solid rgba(0,104,176,.1); font-size:.82rem; color:#666; }
  .atelier-card__prix { font-weight:600; font-size:.93rem; color:#7a4e00; }
  .ateliers__tarifs { margin-top:56px; background:#fff; border-radius:12px; padding:44px; border:1.5px solid rgba(239,178,62,.35); position:relative; z-index:1; box-shadow:0 4px 20px rgba(239,178,62,.12); }
  .ateliers__tarifs h3 { text-align:center; margin-bottom:8px; }
  .ateliers__tarifs > p { text-align:center; font-size:.875rem; color:#555; margin-bottom:28px; }
  .tarifs__grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
  .tarif-item { text-align:center; padding:24px 16px; border-radius:8px; border:1.5px solid rgba(0,104,176,.15); transition:all var(--t); }
  .tarif-item:hover { border-color:var(--bleu); background:var(--clair); }
  .tarif-item--featured { border-color:var(--jaune); background:#fdeec8; position:relative; }
  .tarif-item--featured::before { content:'Populaire'; position:absolute; top:-12px; left:50%; transform:translateX(-50%); background:var(--jaune); color:var(--noir); font-size:.7rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; padding:3px 12px; border-radius:20px; }
  .tarif-item__prix { font-family:'Playfair Display',serif; font-size:2rem; font-weight:700; color:var(--bleu); line-height:1; margin-bottom:6px; }
  .tarif-item__prix span { font-size:.95rem; font-weight:400; }
  .tarif-item__label { font-size:.875rem; font-weight:600; margin-bottom:4px; }
  .tarif-item__desc { font-size:.78rem; color:#555; }
  .ateliers__cta { display:flex; justify-content:center; gap:20px; margin-top:44px; position:relative; z-index:1; }

  /* ── BOUTIQUE ── */
  .boutique { background:var(--blanc); }
  .boutique__grid { display:grid; grid-template-columns:2fr 3fr; gap:56px; align-items:start; }
  .boutique__gallery { display:grid; grid-template-columns:1fr 1fr; grid-template-rows:210px 180px; gap:8px; }
  .boutique__photo { border-radius:6px; overflow:hidden; background:var(--clair); transition:transform var(--t); }
  .boutique__content h2 { margin-bottom:18px; }
  .boutique__content p { margin-bottom:14px; }
  .boutique__marques { margin:20px 0; padding:14px 18px; background:var(--peche); border-left:3px solid var(--jaune); border-radius:0 6px 6px 0; font-size:.875rem; color:#333; line-height:1.7; }
  .boutique__marques strong { color:var(--noir); }
  .boutique__pass { display:flex; gap:8px; flex-wrap:wrap; margin:18px 0; }
  .pass-badge { display:inline-flex; align-items:center; gap:6px; padding:6px 14px; border-radius:6px; font-size:.8rem; font-weight:600; border:1.5px solid; }
  .pass-badge--culture  { color:#005490; border-color:var(--bleu); background:var(--clair); }
  .pass-badge--cjeune   { color:#8a6c00; border-color:var(--jaune); background:#fdeec8; }

  /* ── LIEU ── */
  .lieu { background:var(--vert-pale); overflow:hidden; }
  .lieu__header { text-align:center; margin-bottom:52px; }
  .lieu__mosaic { display:grid; grid-template-columns:2fr 1fr 1fr; grid-template-rows:280px 200px; gap:8px; margin-bottom:44px; }
  .lieu__photo { border-radius:4px; overflow:hidden; background:#A8DFC4; }
  .lieu__photo:nth-child(1) { grid-row:span 2; }
  .lieu__text { text-align:center; max-width:600px; margin:0 auto; }
  .lieu__text p { margin-bottom:24px; }

  /* ── SERVICES ── */
  .services { background:#fff; }
  .services__header { text-align:center; margin-bottom:52px; }
  .services__grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
  .service-card { padding:32px 24px; border-radius:8px; border:1.5px solid rgba(0,104,176,.15); background:#fff; transition:all var(--t); }
  .service-card:hover { border-color:var(--jaune); background:#fff; box-shadow:var(--shadow-warm); }
  .service-card__icon { width:46px; height:46px; display:flex; align-items:center; justify-content:center; background:var(--peche); border-radius:10px; border:1.5px solid rgba(239,178,62,.3); margin-bottom:18px; font-size:1.4rem; transition:all var(--t); }
  .service-card:hover .service-card__icon { background:#fdeec8; border-color:var(--jaune); }
  .service-card h3 { font-size:1rem; margin-bottom:8px; }
  .service-card p { font-size:.875rem; color:#444; line-height:1.65; }
  .services__cta { text-align:center; margin-top:48px; padding-top:36px; border-top:1px solid rgba(0,104,176,.1); }
  .services__cta p { margin-bottom:18px; color:#444; }

  /* ── RÉASSURANCE ── */
  .reassurance { background:var(--bleu); padding:60px 0; }
  .reassurance__grid { display:flex; justify-content:center; gap:56px; flex-wrap:wrap; align-items:center; }
  .reassurance-item { display:flex; flex-direction:column; align-items:center; gap:8px; text-align:center; }
  .reassurance-item__icon { width:64px; height:64px; display:flex; align-items:center; justify-content:center; background:rgba(255,255,255,.15); border-radius:50%; font-size:1.35rem; margin-bottom:4px; overflow:hidden; padding:6px; }
  .reassurance-item__icon img { width:100%; height:100%; object-fit:contain; filter:drop-shadow(0 2px 6px rgba(0,0,0,.25)); }
  .reassurance-item__title { font-size:.875rem; font-weight:600; color:#fff; }
  .reassurance-item__sub { font-size:.78rem; color:rgba(255,255,255,.6); max-width:110px; }

  /* ── CONTACT ── */
  .contact { background:var(--blanc); border-top:1px solid rgba(0,104,176,.10); }
  .contact__grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }
  .contact__map { border-radius:12px; overflow:hidden; height:460px; box-shadow:var(--shadow-warm); position:relative; }
  .contact__map iframe { width:100%; height:100%; border:0; display:block; }
  .contact__info h2 { margin-bottom:28px; }
  .contact__block { margin-bottom:24px; }
  .contact__block-label { font-size:.7rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--bleu); margin-bottom:8px; }
  .contact__block-val { font-size:1rem; color:var(--noir); line-height:1.7; }
  .contact__block-val a { color:var(--bleu); text-decoration:underline; text-underline-offset:3px; }
  .horaires-grid { display:grid; grid-template-columns:auto 1fr; gap:4px 16px; font-size:.9rem; }
  .horaires-grid .jour  { color:#555; }
  .horaires-grid .heure { font-weight:500; color:var(--noir); }
  .horaires-grid .ferme { color:#777; font-style:italic; }
  .contact__socials { display:flex; gap:10px; margin-top:8px; }
  .social-btn { display:inline-flex; align-items:center; gap:8px; padding:8px 16px; border-radius:6px; font-size:.85rem; font-weight:500; border:1.5px solid rgba(0,104,176,.2); background:#fff; transition:all var(--t); }
  .social-btn:hover { border-color:var(--bleu); background:var(--bleu); color:#fff; }
  .contact__btns { display:flex; gap:14px; flex-wrap:wrap; margin-top:32px; padding-top:24px; border-top:1px solid rgba(239,178,62,.25); }

  /* ── AVIS GOOGLE — Trustindex widget ── */
  .avis { background:var(--sable); position:relative; overflow:hidden; }
  .avis::before {
    content:'';
    position:absolute; inset:0; z-index:0; pointer-events:none;
    background-image: linear-gradient(120deg,
      #FEF4E4,
      #DFF5EE,
      #FEF4E4,
      #FDE8C8,
      #F0E4F8,
      #FEF4E4
    );
    background-size: 500% 500%;
    animation: sectionWarm 36s ease infinite reverse;
    opacity: .85;
  }
  .avis .container { position:relative; z-index:1; }
  .avis__header { text-align:center; margin-bottom:36px; }
  .avis__widget { max-width:1100px; margin:0 auto; }

  /* ── NEWSLETTER ── */
  .newsletter { background:var(--jaune); position:relative; overflow:hidden; }
  .newsletter::before {
    content:'';
    position:absolute; inset:0; z-index:0; pointer-events:none;
    /* 5 variations de l'or/ambre du poisson — vivant mais lisible */
    background-image: linear-gradient(110deg,
      #EFB23E,   /* or brand          */
      #F8CC60,   /* or clair          */
      #E8A022,   /* or foncé          */
      #FAD878,   /* champagne         */
      #E89818,   /* ambre profond     */
      #EFB23E    /* retour            */
    );
    background-size: 500% 500%;
    animation: sectionWarm 20s ease infinite;
    opacity:.65;
  }
  .newsletter__inner { position:relative; z-index:1; }
  .newsletter__inner { position:relative; z-index:1; text-align:center; max-width:600px; margin:0 auto; }
  .newsletter h2 { color:var(--noir); margin-bottom:14px; }
  .newsletter p  { color:#2a2a2a; margin-bottom:36px; font-size:1rem; }
  .newsletter .caveat-tag { font-family:'Caveat',cursive; font-size:1.3rem; color:rgba(0,0,0,.5); display:block; margin-bottom:10px; }
  .newsletter__form { display:flex; flex-wrap:wrap; gap:12px; max-width:600px; margin:0 auto 18px; }
  .newsletter__input { flex:1; height:52px; padding:0 18px; border:2px solid rgba(0,0,0,.15); border-radius:var(--r); font-size:.95rem; font-family:'Inter',sans-serif; background:#fff; color:var(--noir); outline:none; }
  .newsletter__input:focus { border-color:var(--bleu); box-shadow:0 0 0 3px rgba(0,104,176,.2); }
  .newsletter__submit {
    position:relative; z-index:1;
    height:52px; padding:0 26px;
    border:none; border-radius:50px;
    font-size:.95rem; font-weight:600; font-family:'Inter',sans-serif;
    color:rgba(255,255,255,.95); text-shadow:0 1px 3px rgba(0,0,0,.25);
    cursor:pointer; letter-spacing:.02em;
    background: linear-gradient(-45deg,#EFB23E,#E84818,#0068B0,#0098C0,#EFB23E);
    background-size: 600%;
    animation: ctaGradient 14s linear infinite;
    transition: transform var(--t);
  }
  .newsletter__submit::after {
    content:''; position:absolute; inset:0; border-radius:50px;
    background: linear-gradient(-45deg,#EFB23E,#E84818,#0068B0,#0098C0,#EFB23E);
    background-size:600%; animation:ctaGradient 14s linear infinite;
    filter:blur(14px); opacity:.65; z-index:-1;
    transform:scaleX(1.04) scaleY(1.3) translateY(5px);
  }
  .newsletter__submit:hover { transform:translateY(-2px); }
  .newsletter__hint { font-size:.8rem; color:rgba(0,0,0,.55); }
  .newsletter__hint a { color:#003f6e; font-weight:500; text-decoration:underline; }

  /* ── FOOTER ── */
  .footer { background:#001e3c; color:rgba(255,255,255,.75); padding:72px 0 0; }
  .footer__grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:44px; padding-bottom:56px; border-bottom:1px solid rgba(255,255,255,.08); }
  .footer__logo { display:flex; align-items:center; gap:10px; margin-bottom:16px; }
  .footer__logo-img { width:44px; height:44px; object-fit:contain; opacity:.95; filter:brightness(1.08); }
  .footer__logo-text { font-family:'Playfair Display',serif; font-size:1.1rem; font-weight:700; color:#fff; line-height:1.1; }
  .footer__logo-text span { display:block; font-family:'Inter',sans-serif; font-size:.62rem; font-weight:400; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.4); margin-top:2px; }
  .footer__brand p { font-size:.875rem; line-height:1.7; color:rgba(255,255,255,.55); max-width:250px; margin-bottom:22px; }
  .footer__socials { display:flex; gap:10px; }
  .footer__social-icon { width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center; font-size:.95rem; transition:background var(--t); color:#fff; }
  .footer__social-icon:hover { background:var(--jaune); color:var(--noir); }
  .footer__col h4 { font-family:'Inter',sans-serif; font-size:.7rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.4); margin-bottom:18px; }
  .footer__links { list-style:none; }
  .footer__links li { margin-bottom:9px; }
  .footer__links a { font-size:.875rem; color:rgba(255,255,255,.78); transition:color var(--t); }
  .footer__links a:hover { color:#fff; }
  .footer__pratique p { font-size:.875rem; color:rgba(255,255,255,.78); line-height:1.7; margin-bottom:5px; }
  .footer__pratique strong { color:rgba(255,255,255,.85); }
  .footer__bottom { display:flex; justify-content:space-between; align-items:center; padding:22px 0; font-size:.78rem; color:rgba(255,255,255,.35); flex-wrap:wrap; gap:10px; }
  .footer__bottom a { color:rgba(255,255,255,.45); transition:color var(--t); }
  .footer__bottom a:hover { color:rgba(255,255,255,.8); }
  .footer__legal { display:flex; gap:18px; flex-wrap:wrap; }

  /* ── MOBILE NAV ── */
  .mobile-nav {
    display:none; position:fixed; inset:0; background:#fff; z-index:200;
    padding:24px 28px 36px; flex-direction:column;
    justify-content:space-between;          /* logo en haut, CTA en bas */
    overflow-y:auto;
  }
  .mobile-nav.open { display:flex; }
  .mobile-nav__top { display:flex; justify-content:space-between; align-items:center; margin-bottom:40px; }
  .mobile-nav__close {
    background:none; border:none; font-size:1.6rem; cursor:pointer;
    width:40px; height:40px; display:flex; align-items:center; justify-content:center;
    border-radius:50%; transition:background var(--t);
  }
  .mobile-nav__close:hover { background:var(--sable); }
  .mobile-nav__links { display:flex; flex-direction:column; gap:0; flex:1; }
  .mobile-nav__links a {
    font-size:1.5rem; font-family:'Playfair Display',serif; color:var(--noir);
    padding:14px 0; border-bottom:1px solid rgba(0,0,0,.06);
    display:flex; align-items:center; justify-content:space-between;
    transition:color var(--t), padding-left var(--t);
  }
  .mobile-nav__links a::after { content:'→'; font-size:1rem; opacity:.3; transition:opacity var(--t), transform var(--t); }
  .mobile-nav__links a:hover::after { opacity:.7; transform:translateX(4px); }
  /* Indicateur couleur par section */
  .mobile-nav__links a:nth-child(1) { border-left:3px solid #E84818; padding-left:14px; }
  .mobile-nav__links a:nth-child(2) { border-left:3px solid #EFB23E; padding-left:14px; }
  .mobile-nav__links a:nth-child(3) { border-left:3px solid #00AA78; padding-left:14px; }
  .mobile-nav__links a:nth-child(4) { border-left:3px solid #0098C0; padding-left:14px; }
  .mobile-nav__links a:nth-child(5) { border-left:3px solid #888;    padding-left:14px; }
  .mobile-nav__links a:nth-child(1):hover { color:#C83010; }
  .mobile-nav__links a:nth-child(2):hover { color:#A07000; }
  .mobile-nav__links a:nth-child(3):hover { color:#007A50; }
  .mobile-nav__links a:nth-child(4):hover { color:#0068B0; }
  .mobile-nav__links a:nth-child(5):hover { color:#444; }
  /* CTA en bas du menu */
  .mobile-nav__cta { margin-top:32px; display:flex; flex-direction:column; gap:12px; }
  .mobile-nav__cta .btn {
    width:100%; justify-content:center;
    height:56px; font-size:1rem;
  }

  /* ── SCROLL OFFSET — compense le header sticky (s'adapte à sa hauteur) ── */
  #ateliers, #boutique, #lieu, #services, #contact, #avis, #histoire {
    scroll-margin-top: 80px;  /* desktop : header 72px */
  }

  /* ── ANIMATIONS ── */
  .fade-up { opacity:0; transform:translateY(22px); transition:opacity .6s ease, transform .6s ease; }
  .fade-up.visible { opacity:1; transform:translateY(0); }
  .fade-up:nth-child(2) { transition-delay:.1s; }
  .fade-up:nth-child(3) { transition-delay:.2s; }
  .fade-up:nth-child(4) { transition-delay:.3s; }

  /* ══════════════════════════════════════════════════════
     RESPONSIVE — 5 paliers
     1440px+ → grand écran / wide desktop
      960px  → tablette paysage / petit desktop
      768px  → tablette portrait / grand mobile
      480px  → mobile standard
      360px  → petit mobile
     ══════════════════════════════════════════════════════ */

  /* ── 1440px+ : grands écrans — aération supplémentaire ── */
  @media (min-width:1440px) {
    .container { padding:0 48px; }
    h1 { font-size:4.2rem; }
    .hero { min-height:88vh; }
    .hero__eyebrow { font-size:1.6rem; }
    .section { padding:120px 0; }
    .portes__grid { gap:32px; }
    .ateliers__tarifs { padding:56px; }
  }

  /* ── 960px : tablette paysage ── */
  @media (max-width:960px) {
    /* Nav : espacement réduit, CTA masqué (accessible via burger à 768px) */
    .nav { gap:18px; }
    .nav__link { font-size:.85rem; }
    .btn--nav-cta { display:none; }

    /* Grilles 4→2 colonnes */
    .portes__grid    { grid-template-columns:repeat(2,1fr); gap:20px; }
    .ateliers__grid  { grid-template-columns:repeat(2,1fr); }
    .services__grid  { grid-template-columns:repeat(2,1fr); }
    .tarifs__grid    { grid-template-columns:repeat(2,1fr); }

    /* Footer : 2 colonnes */
    .footer__grid { grid-template-columns:1fr 1fr; gap:36px; }

    /* Boutique : 2 colonnes + galerie adaptée */
    .boutique__grid { grid-template-columns:1fr 1fr; gap:36px; }
    .boutique__gallery { grid-template-columns:1fr 1fr; grid-template-rows:180px 150px; }
    .boutique__photo { border-radius:4px; }

    /* Lieu */
    .lieu__mosaic { grid-template-columns:1fr 1fr; grid-template-rows:220px 220px 220px; }
    .lieu__photo:nth-child(1) { grid-row:auto; grid-column:span 2; }

    /* Histoire */
    .histoire__grid { gap:44px; }
  }

  /* ── 768px : tablette portrait / grand mobile ── */
  @media (max-width:768px) {
    /* Scroll offset adapté à la nouvelle hauteur header */
    #ateliers, #boutique, #lieu, #services, #contact, #avis, #histoire {
      scroll-margin-top: 68px;
    }

    /* Topbar : texte simplifié */
    .topbar { font-size:.75rem; padding:6px 0; letter-spacing:0; }

    /* Header : hauteur réduite */
    .header__inner { height:60px; }
    .logo__img { width:36px; height:36px; }
    .logo { font-size:1.1rem; gap:9px; }

    /* Nav desktop → burger */
    .nav { display:none; }
    .hamburger { display:flex; }

    /* Sections */
    .section { padding:56px 0; }
    .container { padding:0 18px; }

    /* Hero */
    .hero { min-height:92vh; padding-bottom:60px; align-items:flex-end; }
    .hero__content { padding:0 18px; }
    .hero__sub { font-size:.95rem; max-width:100%; }
    .hero__scroll { display:none; }
    .hero .btn-group { flex-direction:column; align-items:flex-start; gap:12px; }
    .hero .btn-group .btn { width:100%; max-width:320px; justify-content:center; }

    /* Histoire */
    .histoire__grid { grid-template-columns:1fr; gap:32px; }
    .histoire__img-accent { display:none; }
    .histoire__img-main { aspect-ratio:16/9; }
    .histoire__content .btn { width:100%; justify-content:center; }

    /* Ateliers — vague de transition atténuée */
    .ateliers::before { top:-40px; height:80px; }
    .ateliers__grid  { grid-template-columns:1fr 1fr; gap:16px; }
    .ateliers__tarifs { padding:28px 20px; }
    .ateliers__cta { flex-direction:column; align-items:center; gap:12px; }
    .ateliers__cta .btn { width:100%; max-width:320px; justify-content:center; }

    /* Boutique */
    .boutique__grid { grid-template-columns:1fr; gap:32px; }
    .boutique__gallery { grid-template-columns:1fr 1fr; grid-template-rows:160px 140px; }
    .boutique__content .btn-group { flex-direction:column; gap:10px; }
    .boutique__content .btn-group .btn { width:100%; justify-content:center; }

    /* Lieu */
    .lieu__mosaic { grid-template-columns:1fr 1fr; grid-template-rows:180px 180px 180px; }
    .lieu__photo:nth-child(1) { grid-row:auto; grid-column:span 2; }
    .lieu__text .btn { width:100%; justify-content:center; }

    /* Services */
    .services__grid { grid-template-columns:1fr 1fr; gap:16px; }
    .services__cta .btn { width:100%; justify-content:center; }

    /* Réassurance */
    .reassurance { padding:44px 0; }
    .reassurance__grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; justify-items:center; }
    .reassurance-item { max-width:140px; }

    /* Tarifs */
    .tarifs__grid { grid-template-columns:1fr 1fr; gap:14px; }

    /* Contact */
    .contact__grid { grid-template-columns:1fr; gap:32px; }
    .contact__map  { height:260px; }
    .contact__btns { flex-direction:column; gap:10px; }
    .contact__btns .btn { width:100%; justify-content:center; }
    .contact__socials { flex-wrap:wrap; gap:8px; }
    .social-btn { flex:1 1 auto; justify-content:center; min-width:140px; }
    .horaires-grid { font-size:.85rem; }

    /* Newsletter */
    .newsletter__form { flex-direction:column; gap:10px; max-width:100%; }
    .newsletter__input { width:100%; }
    .newsletter__submit { width:100%; }

    /* Footer */
    .footer__grid { grid-template-columns:1fr 1fr; gap:28px; }
    .footer { padding:52px 0 0; }
  }

  /* ── 480px : mobile standard ── */
  @media (max-width:480px) {
    /* Scroll offset adapté */
    #ateliers, #boutique, #lieu, #services, #contact, #avis, #histoire {
      scroll-margin-top: 62px;
    }

    /* Topbar masqué */
    .topbar { display:none; }

    .section { padding:44px 0; }
    .container { padding:0 16px; }

    /* Header */
    .header__inner { height:56px; }
    .logo span { display:none; }

    /* Hero */
    .hero { min-height:95vh; padding-bottom:48px; }
    .hero h1 { font-size: clamp(2rem, 8vw, 3rem) !important; }
    .hero__eyebrow { font-size:1.2rem; margin-bottom:14px; }
    .hero__sub { font-size:.9rem; margin-bottom:28px; }
    .hero .btn-group .btn { max-width:100%; }

    /* Portes — 1 colonne */
    .portes__grid { grid-template-columns:1fr; gap:14px; }
    .porte-card { flex-direction:row; }           /* horizontal sur mobile : image à gauche */
    .porte-card__thumb { width:140px; height:auto; min-height:100%; flex-shrink:0; }
    .porte-card__body { padding:16px 18px; }

    /* Ateliers — 1 colonne */
    .ateliers__grid { grid-template-columns:1fr; }
    .ateliers::before { display:none; }           /* vague masquée sur mobile */
    .atelier-card__thumb { height:180px; }

    /* Boutique galerie */
    .boutique__gallery { grid-template-columns:1fr 1fr; grid-template-rows:130px 110px; }
    .boutique__photo:nth-child(1),
    .boutique__photo:nth-child(4) { grid-column:span 2; }

    /* Lieu — 2 colonnes compactes */
    .lieu__mosaic { grid-template-columns:1fr 1fr; grid-template-rows:150px 150px 150px; }
    .lieu__photo:nth-child(1) { grid-column:span 2; grid-row:auto; }

    /* Services */
    .services__grid { grid-template-columns:1fr; }
    .service-card { padding:22px 18px; }

    /* Réassurance — 2 colonnes */
    .reassurance__grid { grid-template-columns:repeat(2,1fr); gap:16px; }
    .reassurance-item { max-width:100%; }

    /* Tarifs */
    .tarifs__grid { grid-template-columns:1fr; gap:10px; }
    .tarif-item { padding:18px 12px; }

    /* Groupes de boutons */
    .btn-group { flex-direction:column; align-items:stretch; gap:10px; }
    .btn-group .btn,
    .btn-group .btn--cta,
    .btn-group .link-ext { width:100%; justify-content:center; text-align:center; }

    /* Horaires — police réduite pour "Mercredi" */
    .horaires-grid { font-size:.82rem; gap:3px 12px; }

    /* Contact */
    .contact__map { height:220px; }
    .social-btn { font-size:.8rem; padding:7px 12px; }

    /* Footer */
    .footer__grid { grid-template-columns:1fr; gap:24px; }
    .footer__bottom { flex-direction:column; gap:8px; font-size:.72rem; }
    .footer__legal { gap:12px; }

    /* Mobile nav */
    .mobile-nav { padding:20px 20px 28px; }
    .mobile-nav__links a { font-size:1.25rem; padding:12px 0; }
  }

  /* ── 360px : petit mobile ── */
  @media (max-width:360px) {
    #ateliers, #boutique, #lieu, #services, #contact, #avis, #histoire {
      scroll-margin-top: 60px;
    }

    .container { padding:0 12px; }
    .section { padding:36px 0; }

    .hero { min-height:100dvh; padding-bottom:36px; }
    .hero h1 { font-size: 1.9rem !important; }
    .hero__sub { font-size:.85rem; }
    .hero__eyebrow { font-size:1.1rem; }

    .porte-card__thumb { width:100px; }
    .porte-card__body { padding:12px 14px; }
    
    .porte-card p { font-size:.8rem; }

    .btn { height:46px; padding:0 18px; font-size:.88rem; }
    .btn--cta, .btn--nav-cta { font-size:.88rem; }

    .mobile-nav__links a { font-size:1.1rem; }
    .horaires-grid { font-size:.78rem; }

    .atelier-card__meta { flex-direction:column; align-items:flex-start; gap:4px; }
  }


/* ═══════════════════════════════════════════════════════════════════════════
   PATCH ELEMENTOR — La Girelle-Paon
   Corrige les wrappers Elementor qui cassent les layouts custom
   ═══════════════════════════════════════════════════════════════════════════ */

/* Supprimer les paddings Elementor sur TOUTES les colonnes contenant nos widgets HTML */
.elementor-widget-html .elementor-widget-container {
    padding: 0 !important;
}

/* Supprimer les paddings des sections/colonnes Elementor pour nos blocs full-width */
.elementor-section > .elementor-container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.elementor-section > .elementor-container > .elementor-row,
.elementor-section > .elementor-container > .elementor-column,
.elementor-section > .elementor-container > .elementor-column > .elementor-widget-wrap {
    padding: 0 !important;
    margin: 0 !important;
}

/* ── HERO — fix hauteur et pleine largeur ──────────────────────────────── */
.hero {
    width: 100% !important;
    min-height: 85vh !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: flex-end !important;
    padding-bottom: 80px !important;
}
.hero::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    background-image: linear-gradient(135deg,
        #003B8E, #0098C0, #00AA78, #78C820,
        #EFB23E, #E84818, #B81878, #003B8E
    ) !important;
    background-size: 700% 700% !important;
    animation: girellePaon 26s ease infinite !important;
}
@media (max-width: 768px) {
    .hero { min-height: 92vh !important; padding-bottom: 60px !important; }
}
@media (max-width: 480px) {
    .hero { min-height: 95vh !important; padding-bottom: 48px !important; }
}

/* ── SECTIONS — fix pleine largeur ────────────────────────────────────── */
.topbar, .header, section.portes, section.histoire,
section.ateliers, section.boutique, section.lieu,
section.services, section.reassurance, section.avis,
section.contact, section.newsletter, footer.footer {
    width: 100% !important;
    box-sizing: border-box !important;
}

/* ── PORTES — gradient animé fond sable ────────────────────────────────── */
section.portes {
    position: relative !important;
    overflow: hidden !important;
    background: #FEF4E4 !important;
}
section.portes::before {
    content: '' !important;
    position: absolute !important; inset: 0 !important; z-index: 0 !important;
    pointer-events: none !important;
    background-image: linear-gradient(120deg,
        #FEF4E4, #88D8CC, #FEF4E4, #F8C870, #C8A0E8, #7ECCE8, #FEF4E4) !important;
    background-size: 500% 500% !important;
    animation: sectionWarm 18s ease infinite !important;
    opacity: .55 !important;
}
section.portes .container { position: relative !important; z-index: 1 !important; }

/* ── ATELIERS — gradients chaud + vague transition ─────────────────────── */
section.ateliers {
    position: relative !important;
    overflow: hidden !important;
    background: #F5EDE6 !important; /* blanc cassé chaud — plus doux que #fff */
}
section.ateliers::before {
    content: '' !important;
    position: absolute !important; top: -60px !important; left: 0 !important;
    right: 0 !important; height: 120px !important;
    background: #F9F4EF !important; /* cassé assorti — pas blanc pur */
    clip-path: ellipse(55% 100% at 50% 0%) !important;
    z-index: 1 !important;
}
section.ateliers::after {
    content: '' !important;
    position: absolute !important; inset: 0 !important;
    z-index: 0 !important; pointer-events: none !important;
    background-image: linear-gradient(125deg,
        #F5EDE6, #FDDFC0, #F0E8D8, #D8F0E8, #F5EDE6, #EED8F0, #FDDFC0) !important;
    background-size: 600% 600% !important;
    animation: sectionWarm 32s ease infinite reverse !important;
}
section.ateliers .container,
.ateliers__grid, .ateliers__tarifs, .ateliers__cta {
    position: relative !important; z-index: 2 !important;
}

/* ── AVIS — dégradé statique jaune-orangé → bleu lavande (pas d'animation) */
section.avis {
    position: relative !important;
    overflow: hidden !important;
    background: linear-gradient(120deg, #FEF0D0 0%, #FDE8C8 30%, #E8D8EE 65%, #D0E8F4 100%) !important;
}
section.avis::before { display: none !important; }
section.avis .container { position: relative !important; z-index: 1 !important; }

/* ── NEWSLETTER — gradient or ───────────────────────────────────────────── */
section.newsletter {
    position: relative !important;
    overflow: hidden !important;
    background: #EFB23E !important;
}
section.newsletter::before {
    content: '' !important;
    position: absolute !important; inset: 0 !important;
    z-index: 0 !important; pointer-events: none !important;
    background-image: linear-gradient(110deg,
        #EFB23E, #F8CC60, #E8A022, #FAD878, #E89818, #EFB23E) !important;
    background-size: 500% 500% !important;
    animation: sectionWarm 20s ease infinite !important;
    opacity: .65 !important;
}
.newsletter__inner { position: relative !important; z-index: 1 !important; }

/* ── RÉASSURANCE — fond violet paon animé ───────────────────────────────── */
section.reassurance {
    background: #3D2C72 !important;
    padding: 60px 0 !important;
    width: 100% !important;
    position: relative !important;
    overflow: hidden !important;
}
section.reassurance::before {
    content: '' !important;
    position: absolute !important; inset: 0 !important;
    z-index: 0 !important; pointer-events: none !important;
    background-image: linear-gradient(120deg,
        #3D2C72, #6A4AA8, #0098C0, #8B3D9E, #4D3A8C, #0068B0, #3D2C72) !important;
    background-size: 500% 500% !important;
    animation: sectionWarm 22s ease infinite !important;
    opacity: .75 !important;
}
section.reassurance .container { position: relative !important; z-index: 1 !important; }

/* ── Fix Elementor overflow qui bloque position:sticky ─────────────────── */
.elementor-section,
.elementor-top-section,
.elementor-inner-section {
    overflow: visible !important;
}

/* ── HEADER sticky + hide/show on scroll ────────────────────────────────── */
.header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    background: #fff !important;
    width: 100% !important;
    /* transition sur transform ET box-shadow */
    transition: transform .3s cubic-bezier(.4,0,.2,1),
                box-shadow .2s ease !important;
}

/* JS ajoute .is-fixed quand la topbar est scrollée hors du viewport */
.header.is-fixed {
    position: fixed !important;
    top: 0 !important; left: 0 !important; right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    box-shadow: 0 2px 12px rgba(0,30,60,.10) !important;
}

/* JS ajoute .header--hidden quand on scrolle vers le bas → glisse vers le haut */
.header.is-fixed.header--hidden {
    transform: translateY(-100%) !important;
    box-shadow: none !important;
}

/* Petite ombre de profondeur quand le header est visible et fixé */
.header.is-fixed:not(.header--hidden) {
    box-shadow: 0 2px 16px rgba(0,30,60,.10) !important;
}

/* ── TOPBAR : rendu mobile & emoji ─────────────────────────────────────── */
.topbar {
    font-variant-numeric: normal !important;
    font-feature-settings: normal !important;
}
/* Version courte : cachée par défaut */
.topbar-short { display: none !important; }

/* ── MOBILE NAV z-index au dessus du header fixé ─────────────────────── */
.mobile-nav {
    z-index: 10000 !important;
}

@media (max-width: 600px) {
    /* Sur mobile : version courte sans emoji */
    .topbar-full  { display: none !important; }
    .topbar-short { display: inline !important; }
    /* Assure que la police n'écrase pas les chiffres */
    .topbar { letter-spacing: 0 !important; font-size: .78rem !important; }
}

/* ── MOBILE NAV overlay ─────────────────────────────────────────────────── */
.mobile-nav {
    z-index: 200 !important;
}

/* ── Bouton CTA animé — forcer l'animation ──────────────────────────────── */
.btn--cta, .btn--nav-cta, .newsletter__submit {
    animation: ctaGradient 14s linear infinite !important;
}

/* ── Fix couleur texte bleue au hover — neutralise OceanWP/Elementor ───────
   Elementor et OceanWP injectent a:hover { color: var(--primary) } qui
   écrase la couleur blanche des boutons. On force chaque variante. */
.btn:hover, .btn:focus,
a.btn:hover, a.btn:focus {
    text-decoration: none !important;
}
.btn--cta:hover, .btn--cta:focus,
.btn--warm:hover, .btn--warm:focus,
.btn--primary:hover, .btn--primary:focus,
.btn--nav-cta:hover, .btn--nav-cta:focus,
.newsletter__submit:hover, .newsletter__submit:focus {
    color: #fff !important;
}
.btn--outline:hover, .btn--outline:focus {
    color: #fff !important;
}
/* Cas général : tout enfant dans un bouton hérite de la couleur du bouton */
.btn *, a.btn * {
    color: inherit !important;
}
/* Nav header — uniquement le bouton CTA, pas les liens du menu */
.header .btn--nav-cta:hover,
.header .btn--nav-cta:focus {
    color: #fff !important;
}
/* Porte-cards et image-links (hover ne doit pas bleuir le titre) */
.porte-card:hover .porte-card__body h3,
.atelier-card:hover .atelier-card__body h3 {
    color: inherit !important;
}

/* ── Footer horaires-grid — texte clair sur fond sombre ────────────────────
   Le footer utilise maintenant le même .horaires-grid que la section contact,
   mais sur fond bleu nuit : on adapte les couleurs. */
.footer-horaires {
    margin: 8px 0 12px !important;
    gap: 3px 14px !important;
}
.footer-horaires .jour {
    color: rgba(255,255,255,.60) !important;
    font-size: .82rem !important;
}
.footer-horaires .heure {
    color: rgba(255,255,255,.90) !important;
    font-size: .82rem !important;
    font-weight: 500 !important;
}
.footer-horaires .ferme {
    color: rgba(255,255,255,.40) !important;
    font-style: italic !important;
}

/* ── Nav compact — évite le retour à la ligne avec 6+ liens ────────────── */
.nav {
    gap: 2px !important;
}
.nav .nav__link {
    font-size: .84rem !important;
    padding: 6px 10px !important;
    white-space: nowrap !important;
}
.nav .btn--nav-cta {
    font-size: .84rem !important;
    padding: 7px 14px !important;
    white-space: nowrap !important;
}
.nav__link--summer {
    color: #B07D0A !important;
    font-weight: 600 !important;
}
.nav__link--summer:hover {
    color: #EFB23E !important;
}

/* ── Fix overflow mobile — flex children ────────────────────────────────── */
.porte-card__body,
.atelier-card__body,
.service-card,
.histoire__content,
.boutique__content {
    min-width: 0 !important;
    overflow-wrap: break-word !important;
}
/* Sections ne débordent pas sur mobile */
.section, .portes, .ateliers, .boutique, .lieu, .services,
.histoire, .contact, .newsletter, .reassurance {
    max-width: 100vw !important;
    overflow-x: hidden !important;
}

/* ── ACTIVITÉS ÉTÉ 2026 ─────────────────────────────────────────────────── */
.ete2026 {
    background: #f9fafb !important;
    padding: 72px 0 60px !important;
}
.ete__header {
    text-align: center;
    margin-bottom: 44px;
}
/* Grille 4 cartes 2×2 */
.ete__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 52px;
}
/* Chaque carte */
.ete-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,30,60,.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.ete-card__accent {
    height: 4px;
    background: var(--ete-accent, #001e3c);
}
.ete-card__inner {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.ete-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}
.ete-card__tags span {
    font-size: .72rem;
    font-weight: 600;
    color: #888;
    background: #f4f0e8;
    padding: 2px 9px;
    border-radius: 10px;
    white-space: nowrap;
}
.ete-card h3 {
    font-size: 1.05rem;
    color: #001e3c;
    margin: 0 0 3px;
    line-height: 1.25;
}
.ete-card h3 em {
    display: block;
    font-style: normal;
    font-size: .85rem;
    font-weight: 400;
    color: #888;
    font-family: 'Inter', sans-serif;
    margin-top: 1px;
}
.ete-card__sub {
    font-size: .82rem;
    color: #888;
    margin: 0 0 12px;
    font-style: italic;
}
.ete-card__desc {
    font-size: .88rem;
    color: #444;
    line-height: 1.6;
    margin: 0 0 14px;
    flex: 1;
}
.ete-card__price {
    font-size: .88rem;
    color: #444;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f0ede8;
}
.ete-card__price strong {
    color: #001e3c;
    font-size: 1rem;
}
.ete-sep { color: #ccc; }
/* List inside card */
.ete-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 0 0;
    flex: 1;
}
.ete-card__list li {
    padding: 9px 0;
    border-bottom: 1px solid #f4f0ea;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ete-card__list li:last-child { border-bottom: none; }
.ete-card__list li strong { font-size: .88rem; color: #001e3c; }
.ete-card__list li span { font-size: .82rem; color: #B07D0A; font-weight: 600; }
.ete-card__list li small { font-size: .76rem; color: #aaa; font-style: normal; }

/* Tarifs résumé */
.ete__tarifs {
    margin-bottom: 32px;
}

.ete-tarifs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.ete-tarif {
    background: #fff;
    border-radius: 8px;
    padding: 14px 14px;
    box-shadow: 0 1px 6px rgba(0,30,60,.07);
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.ete-tarif--gold { border-top: 3px solid #EFB23E; }
.ete-tarif span { font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: #999; }
.ete-tarif strong { font-size: .95rem; color: #001e3c; }
.ete-tarif small { font-size: .75rem; color: #bbb; }

/* Conditions — accordion natif details/summary (zéro JS) */
.ete__conditions {
    border: 1px solid #e8e0d0;
    border-radius: 10px;
    background: #fff;
    margin-bottom: 32px;
    overflow: hidden;
}
.ete__conditions summary {
    padding: 15px 20px;
    font-size: .9rem;
    font-weight: 600;
    color: #001e3c;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ete__conditions summary::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 300;
    color: #999;
    transition: transform .2s;
}
.ete__conditions[open] summary::after { content: '−'; }
.ete__conditions ul {
    list-style: none;
    padding: 0 20px 16px;
    margin: 0;
}
.ete__conditions li {
    padding: 7px 0;
    font-size: .85rem;
    color: #444;
    border-bottom: 1px solid #f4f4f4;
    line-height: 1.5;
}
.ete__conditions li:last-child { border-bottom: none; }
.ete__conditions li strong { color: #001e3c; }

/* CTA */
.ete__cta { text-align: center; }
.ete__cta p { color: #666; margin-bottom: 16px; font-size: .93rem; }

/* Responsive */
@media (max-width: 768px) {
    .ete2026 { padding: 48px 0 40px !important; }
    .ete__grid { grid-template-columns: 1fr; gap: 14px; }
    .ete-tarifs__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .ete-tarifs__grid { grid-template-columns: 1fr; gap: 10px; }
    
}

/* ── Service card icons SVG ─────────────────────────────────────────────── */
.service-card__icon { width:48px; height:48px; display:flex; align-items:center; justify-content:center;
    background:#f8f6f2; border-radius:12px; margin-bottom:14px; }
.service-card__icon svg { width:24px; height:24px; }

/* ── ACTIVITES ETE 2026 ──────────────────────────────────────────────────── */
.ete2026 { background:#f9fafb !important; padding:72px 0 60px !important; }
.ete__header { text-align:center; margin-bottom:40px; }
.badge--summer { display:inline-block; background:#EFB23E; color:#fff; font-size:.75rem; font-weight:700;
    letter-spacing:.09em; text-transform:uppercase; padding:4px 14px; border-radius:20px; margin-bottom:14px; }
.ete__header h2 { color:#001e3c; margin:0 0 10px; }
.ete__header p { color:#666; font-size:.95rem; max-width:560px; margin:0 auto; line-height:1.6; }
.ete__nav { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:36px; justify-content:center; }
.ete__nav-btn { display:inline-block; padding:8px 18px; border-radius:24px; font-size:.82rem; font-weight:600;
    border:1.5px solid var(--nav-color,#001e3c); color:var(--nav-color,#001e3c);
    background:transparent; transition:all .18s ease; white-space:nowrap; }
.ete__nav-btn:hover { background:var(--nav-color,#001e3c); color:#fff !important; }
.ete-bloc { background:#fff; border-radius:12px; box-shadow:0 2px 14px rgba(0,30,60,.08);
    overflow:hidden; margin-bottom:20px; }
.ete-bloc__header { display:flex; align-items:center; justify-content:space-between;
    padding:16px 22px; background:var(--ete-color,#001e3c); color:#fff; gap:12px; }
.ete-bloc__title h3 { font-size:1.1rem; color:#fff; margin:0 0 2px; }
.ete-bloc__title span { font-size:.8rem; opacity:.75; }
.ete-bloc__period { font-size:.8rem; font-weight:700; background:rgba(255,255,255,.18);
    padding:4px 12px; border-radius:14px; white-space:nowrap; flex-shrink:0; }
.ete-bloc__body { padding:8px 0; }
.ete-bloc--compact .ete-bloc__body { padding:16px 22px; }
.ete-bloc__body--row { display:flex; flex-wrap:wrap; }
.ete-info { flex:1 1 200px; padding:10px 22px; border-right:1px solid #f0ede8; }
.ete-info:last-child { border-right:none; }
.ete-info__label { display:block; font-size:.72rem; font-weight:700; text-transform:uppercase;
    letter-spacing:.05em; color:#aaa; margin-bottom:3px; }
.ete-info b { color:#001e3c; font-size:1rem; }
.ete-activite { padding:14px 22px; border-bottom:1px solid #f4f0ea; }
.ete-activite:last-child { border-bottom:none; }
.ete-activite__top { display:flex; align-items:baseline; flex-wrap:wrap; gap:10px; margin-bottom:8px; }
.ete-activite__name { font-size:.92rem; color:#001e3c; font-family:'Inter',sans-serif; }
.ete-activite__formats { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:8px; }
.ete-fmt { display:inline-block; padding:4px 12px; background:#f4f0e8; border-radius:20px;
    font-size:.8rem; color:#555; white-space:nowrap; }
.ete-fmt b { color:#001e3c; }
.ete-fmt--alt { background:#FFF0D0; }
.ete-activite__dates { display:flex; flex-wrap:wrap; align-items:center; gap:4px; }
.ete-mois { font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.05em;
    color:#aaa; padding:0 4px; }
.ete-day { display:inline-block; padding:3px 8px; border:1px solid #e8e0d0; border-radius:10px;
    font-size:.75rem; color:#555; background:#fafafa; font-variant-numeric:normal; white-space:nowrap; }
.ete-label { font-size:.75rem; font-style:italic; color:#888; padding:0 2px; }
.ete__tarifs { margin:40px 0 32px; }
.ete__tarifs h3 { font-family:'Playfair Display',Georgia,serif; font-size:1.2rem; color:#001e3c;
    text-align:center; margin-bottom:16px; }
.ete-table { width:100%; border-collapse:collapse; font-size:.88rem; }
.ete-table thead th { text-align:left; padding:10px 14px; font-size:.72rem; font-weight:700;
    text-transform:uppercase; letter-spacing:.06em; color:#aaa; border-bottom:2px solid #f0ede8; }
.ete-table tbody td { padding:11px 14px; border-bottom:1px solid #f4f0ea; color:#444; vertical-align:middle; }
.ete-table tbody tr:last-child td { border-bottom:none; }
.ete-table b { color:#001e3c; }
.ete-table__cj td { background:#FFF8EC; }
.ete-table__note { font-size:.78rem; color:#aaa; text-align:center; margin-top:10px; }
.ete__cond-section { margin-bottom:36px; }
.ete__cond-section h3 { font-family:'Playfair Display',Georgia,serif; font-size:1.2rem;
    color:#001e3c; text-align:center; margin-bottom:16px; }
.ete-cond__grid { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.ete-cond__bloc { border-radius:10px; padding:16px 14px; border-top:4px solid transparent; }
.ete-cond__bloc--ok  { background:#F0FBF4; border-top-color:#27AE60; }
.ete-cond__bloc--mid { background:#FFFBF0; border-top-color:#EFB23E; }
.ete-cond__bloc--ko  { background:#FEF0EE; border-top-color:#E84818; }
.ete-cond__bloc--cj  { background:#F5F0FA; border-top-color:#7D3C98; }
.ete-cond__delai { font-size:.78rem; font-weight:700; text-transform:uppercase;
    letter-spacing:.05em; color:#555; margin-bottom:8px; }
.ete-cond__regle { font-size:.84rem; color:#444; line-height:1.5; }
.ete__cta { text-align:center; }
.ete__cta p { color:#666; margin-bottom:16px; font-size:.93rem; }
@media (max-width:900px) { .ete-cond__grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:768px) {
    .ete2026 { padding:48px 0 40px !important; }
    .ete-bloc__body--row { flex-direction:column; }
    .ete-info { border-right:none; border-bottom:1px solid #f0ede8; }
    .ete-table thead { display:none; }
    .ete-table tbody td { display:block; padding:6px 14px; border:none; }
    .ete-table tbody td:first-child { padding-top:12px; font-weight:600; color:#001e3c; }
    .ete-table tbody td:last-child { padding-bottom:12px; }
    .ete-table tbody tr { border-bottom:1px solid #f0ede8; display:block; }
}
@media (max-width:480px) {
    .ete-cond__grid { grid-template-columns:1fr; }
    .ete__nav { gap:6px; }
    .ete__nav-btn { font-size:.78rem; padding:7px 14px; }
    .ete-bloc__header { flex-direction:column; align-items:flex-start; gap:6px; }
}


/* ---- ETE 2026 - Carousel Cards v2 ---- */

/* Btn variant small */
.btn--sm { height:38px !important; padding:0 18px !important; font-size:.82rem !important; border-radius:6px !important; min-width:0 !important; }

/* Sub-heading */
.ete__header-sub { color:#666; font-size:.95rem; max-width:560px; margin:8px auto 0; line-height:1.6; }

/* Nav btn -- upgrade for button element + active state */
.ete__nav-btn { appearance:none; -webkit-appearance:none; font-family:'Inter',sans-serif; cursor:pointer; text-decoration:none !important; }
.ete__nav-btn.active { background:var(--nav-color,#001e3c) !important; color:#fff !important; border-color:var(--nav-color,#001e3c) !important; }

/* Carousel */
.ete__carousel { overflow:hidden; position:relative; }
.ete__track { display:flex; gap:24px; transition:transform .45s cubic-bezier(.4,0,.2,1); }

/* Card */
.ete__card {
    flex:0 0 100%; min-width:0;
    background:#fff; border-radius:14px; overflow:hidden;
    border:1px solid rgba(0,0,0,.09);
    box-shadow:0 2px 12px rgba(0,0,0,.06);
}
.ete__card-hd {
    background:var(--ete-color,#001e3c); color:#fff;
    padding:20px 24px; display:flex; align-items:center;
    justify-content:space-between; gap:12px; flex-wrap:wrap;
}
.ete__card-hd-left { min-width:0; }
.ete__card-title { font-family:'Playfair Display',serif; font-size:1.3rem; font-weight:700; margin:0; color:#fff; }
.ete__card-meta { font-size:.83rem; opacity:.82; margin-top:4px; color:#fff; }
.ete__card-period {
    flex-shrink:0; font-size:.76rem; font-weight:600; letter-spacing:.05em;
    background:rgba(255,255,255,.22); padding:5px 14px; border-radius:20px; white-space:nowrap;
}
.ete__card-bd { padding:20px 24px; display:flex; flex-direction:column; gap:16px; flex:1; }
.ete__act { border-bottom:1px solid #ebebeb; padding-bottom:14px; }
.ete__act:last-child { border-bottom:none; padding-bottom:0; }
.ete__act-name { font-weight:600; color:#001e3c; font-size:.94rem; margin:0 0 8px; }
.ete__act-fmts { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:8px; }
.ete-fmt--week { background:#fef0d0 !important; color:#7a5000 !important; }
.ete-fmt--week b { color:#7a5000 !important; }
.ete__act-dates { font-size:.8rem; display:flex; flex-wrap:wrap; align-items:center; gap:4px; margin:0; }
.ete__card-ft {
    padding:16px 24px; border-top:1px solid #ebebeb;
    display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.ete__card-more {
    font-size:.875rem; font-weight:500; color:var(--ete-color,#001e3c);
    text-decoration:underline !important; text-underline-offset:3px; transition:opacity .2s;
}
.ete__card-more:hover { opacity:.65; }

/* Desktop : center carousel at 800px max */
@media (min-width:860px) {
    .ete__carousel { max-width:800px; margin-left:auto; margin-right:auto; }
}
/* Mobile */
@media (max-width:600px) {
    .ete__card-period { font-size:.7rem; padding:4px 10px; }
    .ete__card-ft { flex-direction:column; align-items:stretch; text-align:center; }
    .ete__card-more { text-align:center; display:block; }
    .ete__card-ft .btn { width:100%; justify-content:center; }
}


@media (max-width: 560px) {
    .ateliers__grid { grid-template-columns: 1fr !important; }
}

/* Ete nav btn active */
.ete__nav-btn.active {
    background: var(--nav-color, #001e3c) !important;
    color: #fff !important;
    border-color: var(--nav-color, #001e3c) !important;
}

/* Card Ete : hauteur 16:9 sur desktop */
@media (min-width: 860px) {
    
    .ete__card-bd { overflow: hidden; }
}

/* ---- Ateliers Carousel (v2) -------------------------------------------- */

/* Wrapper */
.ateliers__carousel-wrap {
    position: relative;
    padding: 0 52px;
    z-index: 1;
}

/* Boutons prev / next */
.ateliers__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,104,176,.25);
    background: #fff;
    color: var(--bleu);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all var(--t);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,104,176,.12);
    padding: 0;
}
.ateliers__nav:hover:not(:disabled) {
    background: var(--bleu);
    color: #fff;
    border-color: var(--bleu);
    box-shadow: 0 4px 16px rgba(0,104,176,.25);
}
.ateliers__nav:disabled {
    opacity: .35;
    cursor: not-allowed;
    pointer-events: none;
}
.ateliers__nav--prev { left: 0; }
.ateliers__nav--next { right: 0; }

/* Viewport : masque le debordement, etablit le container */
.ateliers__viewport {
    container-type: inline-size;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.ateliers__viewport::-webkit-scrollbar { display: none; }

/* Track flex */
.ateliers__track {
    display: flex;
    gap: 24px;
}

/* Chaque carte : 1/3 de la largeur visible */
.ateliers__track .atelier-card {
    flex: 0 0 calc((100cqi - 48px) / 3);
    min-width: 0;
    scroll-snap-align: none;
}
.ateliers__track .atelier-card:nth-child(3n+1) {
    scroll-snap-align: start;
}

/* Indicateurs */
.ateliers__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    position: relative;
    z-index: 1;
}
.ateliers__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(0,104,176,.2);
    cursor: pointer;
    transition: all var(--t);
    border: none;
    padding: 0;
}
.ateliers__dot--active {
    background: var(--bleu);
    transform: scale(1.3);
}

/* Tablette : 2 cartes visibles */
@media (max-width: 900px) {
    .ateliers__carousel-wrap { padding: 0 36px; }
    .ateliers__track .atelier-card {
        flex: 0 0 calc((100cqi - 24px) / 2);
    }
    .ateliers__track .atelier-card:nth-child(3n+1) { scroll-snap-align: none; }
    .ateliers__track .atelier-card:nth-child(2n+1) { scroll-snap-align: start; }
}

/* Mobile : 1 carte visible */
@media (max-width: 560px) {
    .ateliers__carousel-wrap { padding: 0 28px; }
    .ateliers__track .atelier-card {
        flex: 0 0 100cqi;
    }
    .ateliers__track .atelier-card:nth-child(2n+1) { scroll-snap-align: none; }
    .ateliers__track .atelier-card { scroll-snap-align: start; }
}

/* ── Été 2026 : show/hide par catégorie ─────────────────────────────────── */
/* Les cartes sont cachées par défaut ; .is-active les révèle */
.ete__card               { display: none; }
.ete__card.is-active     { display: flex; flex-direction: column;
                           animation: eteCardIn .3s ease; }
@keyframes eteCardIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0);   }
}

/* Desktop : largeur et hauteur min pour la carte active */
@media (min-width: 860px) {
  .ete__card.is-active { min-height: 450px; max-width: 800px; margin: 0 auto; }
}


/* ══════════════════════════════════════════════════════════════════
   COMPOSANTS AJOUTÉS — Sessions 15-23
   ══════════════════════════════════════════════════════════════════ */

/* ── SKIP LINK (accessibilité) ───────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--bleu);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 6px 6px;
  font-size: .9rem;
  font-weight: 600;
  z-index: 9999;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── NEWSLETTER RGPD ─────────────────────────────────────────── */
.newsletter__rgpd {
  width: 100%;
  margin-top: 4px;
  font-size: .78rem;
  color: rgba(0,0,0,.55);
  line-height: 1.5;
  display: flex;
  justify-content: center;
}
.newsletter__rgpd-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  max-width: 480px;
}
.newsletter__rgpd-label input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--jaune);
  width: 15px;
  height: 15px;
}

/* ── BREADCRUMB (fil d'Ariane) ───────────────────────────────── */
.breadcrumb {
  background: #f7f9fc;
  border-bottom: 1px solid rgba(0,104,176,.08);
  padding: 10px 0;
}
.breadcrumb .container { display: flex; align-items: center; }
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  flex-wrap: wrap;
  font-size: .82rem;
  color: var(--gris-4);
}
.breadcrumb__item a {
  color: var(--bleu);
  text-decoration: none;
}
.breadcrumb__item a:hover { text-decoration: underline; }
.breadcrumb__item[aria-current="page"] { color: var(--gris-2); font-weight: 500; }
.breadcrumb__sep { color: var(--gris-5); font-size: .75rem; }

/* ── FAQ (details/summary natif) ────────────────────────────── */
.faq { padding: 60px 0; background: #f9fafb; }
.faq .container { max-width: 1060px; }
.faq__list { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; max-width: 720px; margin-left: auto; margin-right: auto; }
.faq__item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(0,104,176,.10);
  overflow: hidden;
}
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 22px;
  font-family: 'Inter', sans-serif;
  font-size: .97rem;
  font-weight: 600;
  color: var(--bleu);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--bleu-ciel);
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform .2s ease;
}
details[open] .faq__q::after { content: '×'; }
.faq__a {
  padding: 0 22px 18px;
  font-size: .92rem;
  color: var(--gris-2);
  line-height: 1.7;
}

/* ── GALERIE DE RÉALISATIONS ────────────────────────────────── */
.galerie {
  background: linear-gradient(160deg, var(--sable) 0%, #eef7fb 100%);
  padding: 80px 0;
}
.galerie h2 { color: var(--bleu); text-align: center; margin-bottom: 8px; }
.galerie p { color: var(--gris-2); text-align: center; }
.galerie .caveat-tag { color: var(--orange); text-align: center; }
.galerie__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 40px;
}
.galerie__item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 1;
  background: var(--clair);
}
.galerie__item--tall { grid-row: span 2; aspect-ratio: unset; }
.galerie__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s ease;
}
.galerie__item:hover img { transform: scale(1.06); }
.galerie__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 84, 144, .88) 0%,
    rgba(0, 152, 192, .55) 45%,
    transparent 75%
  );
  opacity: 0;
  transition: opacity .35s ease;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.galerie__item:hover .galerie__overlay { opacity: 1; }
.galerie__overlay span {
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0,40,80,.5);
  background: rgba(0, 104, 176, .35);
  padding: 3px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.galerie__caption {
  color: #fff;
  font-size: .78rem;
  font-style: italic;
}
@media (max-width: 768px) {
  .galerie__grid { grid-template-columns: repeat(2, 1fr); }
  .galerie__item--tall { grid-row: span 1; aspect-ratio: 1; }
}
@media (max-width: 480px) {
  .galerie__grid { grid-template-columns: 1fr 1fr; gap: 4px; }
}

/* ── CADEAU STRIP ────────────────────────────────────────────── */
.cadeau-strip {
  background: linear-gradient(135deg, var(--sable) 0%, var(--peche) 100%);
  padding: 28px 0;
  border-top: 1px solid rgba(239,178,62,.2);
  border-bottom: 1px solid rgba(239,178,62,.2);
}
.cadeau-strip .container {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cadeau-strip__icon { font-size: 2rem; flex-shrink: 0; }
.cadeau-strip__text { flex: 1; min-width: 200px; }
.cadeau-strip__text strong { display: block; font-size: 1.05rem; color: var(--noir); margin-bottom: 4px; }
.cadeau-strip__text span { font-size: .9rem; color: var(--gris-3); }

/* ── ATELIERS PLUS (anniversaires, privatisés…) ──────────────── */
.ateliers-plus {
  background: #EAF8FA;
  padding: 80px 0;
}
.ateliers-plus__header { text-align: center; margin-bottom: 48px; }
.ateliers-plus__header h2 { margin-bottom: 12px; }
.ateliers-plus__header p { color: var(--gris-2); max-width: 560px; margin: 0 auto; }
.ateliers-plus__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .ateliers-plus__grid { grid-template-columns: 1fr; }
}
.aplus-card {
  background: #fff;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,104,176,.07);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.aplus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(0,104,176,.13);
}
.aplus-card[data-featured] {
  border: 2px solid var(--jaune);
}
.aplus-card[data-featured]::after {
  content: '⭐ Populaire';
  position: absolute;
  top: 14px; right: 14px;
  background: var(--jaune);
  color: var(--noir);
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.aplus-card__icon {
  font-size: 2.5rem;
  text-align: center;
  padding: 28px 20px 0;
}
.aplus-card__icon--img {
  aspect-ratio: 3 / 4;
  max-height: 360px;
  overflow: hidden;
  width: 100%;
  border-radius: var(--r) var(--r) 0 0;
}
.aplus-card__icon--img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform .4s ease;
}
.aplus-card:hover .aplus-card__icon--img img { transform: scale(1.05); }
.aplus-card__body { padding: 20px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.aplus-card__title { font-size: 1.15rem; font-weight: 700; color: var(--noir); margin-bottom: 8px; }
.aplus-card__desc { font-size: .9rem; color: var(--gris-2); line-height: 1.6; flex: 1; }
.aplus-card__price { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--bleu); font-weight: 700; margin: 12px 0 16px; }
.aplus-card .btn { align-self: flex-start; font-size: .88rem; height: 44px; padding: 0 20px; }

/* ── SERVICE CARD AVEC PHOTO ─────────────────────────────────── */
.service-card--has-photo { padding: 0; overflow: hidden; }
.service-card__photo { height: 180px; overflow: hidden; }
.service-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s ease;
}
.service-card--has-photo:hover .service-card__photo img { transform: scale(1.04); }
.service-card--has-photo .service-card__body { padding: 20px; }

/* ── SUBPAGE PHOTOS (sous-pages ateliers) ────────────────────── */
.subpage-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0 24px;
}
.subpage-photos--single { grid-template-columns: 1fr; max-width: 480px; }
.subpage-photo {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #f0ede8;
}
.subpage-photo--full { aspect-ratio: 3/2; max-width: 480px; }
.subpage-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s ease;
}
.subpage-photo:hover img { transform: scale(1.04); }
.subpage-photo__caption {
  font-size: .75rem;
  color: var(--gris-4);
  font-style: italic;
  margin-top: 6px;
  text-align: center;
  padding: 0 4px;
}
@media (max-width: 500px) {
  .subpage-photos { grid-template-columns: 1fr; }
}

/* ── PAGE LÉGALE (politique confidentialité, mentions légales) ── */
.legal-content { background: #fff; }
.legal-content .container { padding-top: 32px; padding-bottom: 64px; }
.legal-date {
  font-size: .85rem;
  color: var(--gris-4);
  margin-bottom: 40px;
  font-style: italic;
}
.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--bleu);
  margin: 48px 0 14px;
  padding-top: 12px;
  border-top: 2px solid rgba(0,104,176,.12);
  letter-spacing: -.01em;
}
.legal-content h2:first-of-type { margin-top: 0; border-top: none; }
.legal-content p {
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gris-2);
}
.legal-content ul {
  margin: 0 0 20px 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-content ul li {
  font-size: .97rem;
  color: var(--gris-2);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}
.legal-content ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--bleu-ciel);
  font-size: .85rem;
}
.legal-content a { color: var(--bleu); text-decoration: underline; }
.legal-back { margin-top: 56px; padding-top: 28px; border-top: 1px solid #eee; }

/* ── PAGE 404 ─────────────────────────────────────────────────── */
.error-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 24px; }
.error-page__inner { max-width: 520px; }
.error-page__code { font-family: 'Playfair Display', serif; font-size: clamp(6rem,20vw,12rem); font-weight: 700; color: var(--bleu); opacity: .1; line-height: 1; }
.error-page__title { font-size: clamp(1.4rem,3vw,2rem); color: var(--bleu); margin: -20px 0 16px; }
.error-page__text { color: var(--gris-3); margin-bottom: 32px; }
.error-page__links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }


/* ══════════════════════════════════════════════════════════════════
   SECTIONS MANQUANTES — engagements + accueil-ateliers + nav sub
   ══════════════════════════════════════════════════════════════════ */

/* ── ENGAGEMENTS (5 badges en ligne) — fond violet animé ──────── */
.engagements {
  background: #3D2C72;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.engagements::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(-45deg, #3D2C72, #6A4AA8, #0098C0, #8B3D9E, #4D3A8C, #0068B0, #3D2C72);
  background-size: 400% 400%;
  animation: sectionWarm 22s ease infinite;
  opacity: 0.55;
  z-index: 0;
}
.engagements .container { position: relative; z-index: 1; }
.engagements__inner { text-align: center; }
.engagements__label {
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 32px;
  display: block;
  letter-spacing: .03em;
}
.engagements__grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  justify-content: center;
  align-items: stretch;
}
.engage-item {
  flex: 1 1 0;
  min-width: 0;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 24px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255,255,255,.18);
  text-align: center;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}
.engage-item:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,.17);
  box-shadow: 0 10px 36px rgba(0,0,0,.28);
}
/* Image logo — remplace l'ancien emoji */
.engage-item__icon {
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.engage-item__icon img {
  max-height: 128px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
  transition: filter .22s ease, transform .22s ease;
}
.engage-item:hover .engage-item__icon img {
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.4));
  transform: scale(1.06);
}
.engage-item__text strong {
  display: block;
  font-size: .92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}
.engage-item__text span {
  font-size: .82rem;
  color: rgba(255,255,255,.68);
  line-height: 1.45;
}
@media (max-width: 900px) {
  .engagements__grid { flex-wrap: wrap; gap: 12px; }
  .engage-item { flex: 1 1 calc(33% - 12px); min-width: 140px; }
}
@media (max-width: 560px) {
  .engage-item { flex: 1 1 calc(50% - 12px); }
  .engage-item__icon { height: 100px; }
  .engage-item__icon img { max-height: 100px; }
}
@media (max-width: 380px) {
  .engage-item { flex: 1 1 100%; }
}

/* ── ACCUEIL ATELIERS (section preview home) ────────────────────── */
.accueil-ateliers { background: #fff; }
.accueil-ateliers__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.accueil-ateliers__header-text { max-width: 600px; }
.accueil-ateliers__header-text h2 { margin-bottom: 10px; }
.accueil-ateliers__all {
  flex-shrink: 0;
  align-self: flex-end;
}
.accueil-ateliers__footer { text-align: center; margin-top: 24px; }

/* Acard dans le track carousel */
.ateliers__track .acard {
  flex: 0 0 calc((100cqi - 48px) / 3);
  min-width: 0;
  scroll-snap-align: none;
  text-decoration: none;
}
.ateliers__track .acard:nth-child(3n+1) { scroll-snap-align: start; }
@media (max-width: 900px) {
  .ateliers__track .acard { flex: 0 0 calc((100cqi - 24px) / 2); }
  .ateliers__track .acard:nth-child(3n+1) { scroll-snap-align: none; }
  .ateliers__track .acard:nth-child(2n+1) { scroll-snap-align: start; }
}
@media (max-width: 560px) {
  .ateliers__track .acard { flex: 0 0 100cqi; scroll-snap-align: start; }
}

/* ── ACARD (carte atelier sur la home) ──────────────────────────── */
.acard {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,104,176,.08);
  border: 1px solid rgba(0,104,176,.07);
  text-decoration: none;
  color: var(--noir);
  transition: transform .25s ease, box-shadow .25s ease;
}
.acard:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(0,104,176,.14);
}
.acard__thumb {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: var(--clair);
}
.acard__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s ease;
}
.acard:hover .acard__thumb img { transform: scale(1.06); }
.acard__level {
  position: absolute;
  bottom: 10px; left: 10px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
/* Variantes couleur badges — palette girelle-paon */
.acard__level--adultes { background: #003B8E; }
.acard__level--mixte   { background: #0098C0; }
.acard__level--enfants { background: #B81878; }
.acard__level--lino    { background: #00AA78; }
.acard__level--stage   { background: #E84818; }
.acard__body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.acard__body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.acard__body p { font-size: .88rem; color: var(--gris-2); line-height: 1.55; flex: 1; }
.acard__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  font-size: .82rem;
  color: var(--gris-3);
  flex-wrap: wrap;
  gap: 6px;
}
.acard__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bleu);
  white-space: nowrap;
  flex-shrink: 0;
}
.acard__price em { font-size: .75rem; font-style: normal; font-weight: 400; color: var(--gris-4); }
@media (max-width: 900px) {
  .accueil-ateliers__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .accueil-ateliers__grid { grid-template-columns: 1fr; }
  .accueil-ateliers__header { flex-direction: column; align-items: flex-start; }
}

/* ── CADEAU STRIP INNER ─────────────────────────────────────────── */
.cadeau-strip__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn--sm { height: 40px; padding: 0 18px; font-size: .85rem; }

/* ── NAV DROPDOWN (sous-menu ateliers) ──────────────────────────── */
.nav__item { position: relative; display: inline-flex; align-items: center; }
.nav__item--has-sub { display: inline-flex; align-items: center; }
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,104,176,.15);
  border: 1px solid rgba(0,104,176,.08);
  padding: 8px 0;
  padding-top: 16px; /* Pont invisible entre lien parent et menu — comble la zone morte */
  margin-top: 0;
  min-width: 220px;
  z-index: 200;
  list-style: none;
  /* Transition douce : apparition rapide, disparition avec délai */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, visibility 0s linear .22s;
}
.nav__item--has-sub:hover .nav__dropdown,
.nav__item--has-sub:focus-within .nav__dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .15s ease, visibility 0s linear 0s;
}
.nav__dropdown-link {
  display: block;
  padding: 9px 18px;
  font-size: .88rem;
  color: var(--noir);
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.nav__dropdown-link:hover { background: var(--clair); color: var(--bleu); }
.nav__dropdown-sep { height: 1px; background: rgba(0,104,176,.08); margin: 4px 0; }
.nav__dropdown--wide { min-width: 260px; }

/* ── Niveau 2 : flyout Été 2026 ─────────────────────────────── */
.nav__has-sub2 { position: relative; }
.nav__ete-toggle { display: flex !important; justify-content: space-between; align-items: center; gap: 8px; }
.nav__ete-toggle::after { content: "›"; font-size: 1rem; opacity: .45; flex-shrink: 0; transition: transform .15s; }
.nav__has-sub2:hover .nav__ete-toggle::after,
.nav__has-sub2:focus-within .nav__ete-toggle::after { transform: rotate(90deg); opacity: .8; }
.nav__sub2 {
  display: none;
  position: absolute;
  left: calc(100% + 4px);
  top: -6px;
  min-width: 190px;
  background: #fff;
  border: 1px solid rgba(0,104,176,.1);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.13);
  padding: 4px 0;
  list-style: none;
  z-index: 1002;
}
.nav__has-sub2:hover .nav__sub2,
.nav__has-sub2:focus-within .nav__sub2 { display: block; }

/* ── Mobile accordion Été 2026 ──────────────────────────────── */
.mobile-ete-group { display: flex; align-items: stretch; padding-left: 1rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.mobile-ete-group .mobile-nav__child { flex: 1; padding-left: 0; border-bottom: none; }
.mobile-ete-toggle { background: none; border: none; border-left: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.7); font-size: 1.1rem; padding: 0 14px; cursor: pointer; transition: transform .2s; line-height: 1; }
.mobile-ete-toggle[aria-expanded="true"] { transform: rotate(90deg); }
.mobile-ete-sub { display: block; }
.mobile-ete-sub[hidden] { display: none; }

/* ── MOBILE NAV CHILDREN ───────────────────────────────────────── */
.mobile-nav__child { padding-left: 16px; }
.mobile-nav__child a { font-size: .9rem; opacity: .85; }
.mobile-nav__child--deep { padding-left: 28px; }
.mobile-nav__child--deep a { font-size: .82rem; opacity: .7; }


/* ══════════════════════════════════════════════════════════════════
   SECTIONS MANQUANTES — page-hero, été, badges, boutique-cat
   ══════════════════════════════════════════════════════════════════ */

/* ── PAGE HERO (sous-pages) ─────────────────────────────────────── */
.page-hero {
  position: relative;
  color: #fff;
  padding: clamp(80px,12vw,130px) 0 clamp(50px,7vw,80px);
  text-align: center;
  background-color: var(--bleu);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
/* Voile coloré de marque — cobalt foncé → bleu Girelle-Paon */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(0, 24, 72, .82) 0%,
    rgba(0, 104, 176, .70) 55%,
    rgba(0, 152, 192, .55) 100%
  );
  z-index: 0;
}
/* Bande couleur en bas du hero — rappelle les tuiles de l'accueil */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #E84818, #EFB23E, #0098C0, #0068B0);
  z-index: 2;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: #fff !important;
  margin: 0 0 14px;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.page-hero__sub {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.92) !important;
  max-width: 580px;
  margin: 0 auto;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
.page-hero__breadcrumb {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 18px;
  letter-spacing: .02em;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,.75); text-decoration: none; }
.page-hero__breadcrumb a:hover { color: #fff; text-decoration: underline; }
.page-hero__breadcrumb span[aria-hidden] { margin: 0 6px; }

/* ── ÉTÉ 2026 — PRICING CARDS ───────────────────────────────────── */
.ete__pricegrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 32px 0 16px;
}
.ete__pcard {
  border-radius: 12px;
  border: 2px solid var(--pc, var(--bleu));
  padding: 20px;
  background: #fff;
}
.ete__pcard-hd {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.ete__pcard-emoji { font-size: 1.4rem; }
.ete__pcard-hd h4 { font-size: 1rem; font-weight: 700; color: var(--noir); }
.ete__pcard-rows { display: flex; flex-direction: column; gap: 8px; }
.ete__pcard-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  font-size: .88rem;
  color: var(--gris-2);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.ete__pcard-row:last-child { border-bottom: none; padding-bottom: 0; }
.ete__pcard-row > span { flex: 1; }
.ete__pcard-row strong { font-weight: 700; color: var(--noir); white-space: nowrap; flex-shrink: 0; }
.ete__pcard-row em { font-size: .75rem; font-style: normal; color: var(--gris-4); }
.ete__pcard-row--highlight strong { color: var(--bleu-fonce); }
.ete__pcard-sep { height: 1px; background: rgba(0,0,0,.08); margin: 8px 0; }
.ete__pcard-note { font-size: .75rem; color: var(--gris-4); margin-top: 10px; font-style: italic; }

/* ── ÉTÉ 2026 — STEPS (flexibilité) ────────────────────────────── */
.ete__steps { display: flex; flex-direction: column; gap: 0; margin: 24px 0; }
.ete__step {
  display: grid;
  grid-template-columns: 40px 24px 1fr;
  gap: 0 12px;
  align-items: start;
}
.ete__step-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: #f0f4f8;
  flex-shrink: 0;
}
.ete__step--green .ete__step-icon { background: #d0f0e2; }
.ete__step--amber .ete__step-icon { background: #fdeec8; }
.ete__step--blue  .ete__step-icon { background: #d2edf8; }
.ete__step-connector {
  width: 2px;
  background: #e0e8f0;
  margin: 0 auto;
  min-height: 28px;
  grid-row: span 1;
}
.ete__step-connector--last { visibility: hidden; }
.ete__step-body { padding-bottom: 20px; }
.ete__step-body h4 { font-size: .97rem; font-weight: 700; color: var(--bleu); margin-bottom: 4px; }
.ete__step-body p { font-size: .86rem; color: var(--gris-2); line-height: 1.6; }
.ete__step-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  background: var(--clair);
  color: var(--bleu);
  margin-bottom: 6px;
}
.ete__step-badge--blue { background: #d2edf8; }
.ete__extra { background: #f3f4f6; border-radius: 12px; padding: 24px; margin-top: 24px; }
.ete__extra-hd { font-size: 1rem; font-weight: 700; color: var(--bleu); margin-bottom: 12px; }

/* ── FAQ (variantes header/grid) ────────────────────────────────── */
.faq__header { text-align: center; margin-bottom: 40px; }
.faq__header h2 { margin-bottom: 10px; }
.faq__grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto;
}

/* ── GALERIE — variantes header/cta/wide ────────────────────────── */
.galerie__header { text-align: center; margin-bottom: 40px; }
.galerie__header h2 { color: var(--bleu); margin-bottom: 8px; }
.galerie__cta { text-align: center; margin-top: 36px; }
.galerie__item--wide { grid-column: span 2; aspect-ratio: 2/1; }
@media (max-width: 768px) { .galerie__item--wide { grid-column: span 1; aspect-ratio: 1; } }

/* ── APLUS CARD — variantes ─────────────────────────────────────── */
.aplus-card--featured { border: 2px solid var(--jaune); }
.aplus-card--featured::after {
  content: '⭐ Populaire';
  position: absolute;
  top: 12px; right: 12px;
  background: var(--jaune);
  color: var(--noir);
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.aplus-card__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  background: var(--clair);
  color: var(--bleu);
  margin-bottom: 8px;
}
.aplus-card__details {
  margin: 10px 0 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: .82rem;
  color: var(--gris-3);
}
.aplus-card__details li { list-style: none; padding-left: 14px; position: relative; }
.aplus-card__details li::before { content: '✓'; position: absolute; left: 0; color: var(--bleu-ciel); font-size: .8rem; }

/* ── BADGES SECTION (boutique) ────────────────────────────────

/* ── FIN CSS LA GIRELLE-PAON ─────────────────────────────────────── */
