/* ==========================================================================
   Fun Planet Rennaz - main.css
   Tokens centralises (:root) + base + chrome (nav, footer) + composants de
   sections. Tout lit var(--fp-*). Les couleurs/polices se finalisent via les
   tokens ci-dessous ou la section Customizer « Identite visuelle » (surcharge).
   La mise en page reproduit la structure RParc (cases, bordures, grilles).
   ========================================================================== */

:root {
  /* — Palette identique au Raiffeisen Parc (valeurs reelles extraites du site
       source). On reproduit la DA a l'identique ; seul le texte change. — */
  --fp-primary: #2a7e74;        /* teal principal (boutons, accents) */
  --fp-primary-dark: #004c45;   /* teal fonce (secondaire) */
  --fp-secondary: #004c45;      /* teal fonce */
  --fp-secondary-dark: #002f29; /* vert tres fonce (ombres, sections sombres) */
  --fp-accent: #7ebbb5;         /* teal clair / sauge (accent) */
  --fp-ink: #1b1b1b;            /* texte */
  --fp-ink-soft: #5a5a5a;
  --fp-paper: #ffffff;
  --fp-cream: #f7fffe;          /* fond carte / clair (RParc card bg) */
  --fp-sand: #e5dbd0;           /* palette sable secondaire RParc */
  --fp-dark: #002f29;           /* sections sombres / footer */
  --fp-white: #ffffff;

  /* — Lignes — */
  --fp-line: rgba(27, 27, 27, 0.12);
  --fp-line-strong: rgba(42, 126, 116, 0.4);
  --fp-line-light: rgba(255, 255, 255, 0.2);

  /* — Typo (identique au RParc) — */
  --fp-font-heading: 'Bebas Neue', 'Anton', system-ui, sans-serif;        /* display capitales */
  --fp-font-display: 'Thoge', 'Bebas Neue', system-ui, sans-serif;        /* gros titres (Thoge, fallback Bebas) */
  --fp-font-body: 'Aeonik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --fp-font-accent: 'Roboto', system-ui, sans-serif;
  --fp-font-mono: ui-monospace, SFMono-Regular, Menlo, monospace;

  /* — Rythme / chrome — */
  --fp-wrap: 1240px;
  --fp-gutter: 40px;
  --fp-gutter-mobile: 20px;
  --fp-section-y: 96px;
  --fp-section-y-sm: 64px;
  --fp-radius-sm: 12px;
  --fp-radius: 20px;            /* --em-border-radius RParc */
  --fp-radius-lg: 24px;         /* cartes RParc */
  --fp-pill: 30px;             /* boutons pilule RParc */
  --fp-nav-h: 76px;

  /* — Elevations (teal, identiques au RParc) — */
  --fp-shadow: 0 4px 20px rgba(42, 126, 116, 0.15);
  --fp-shadow-lg: 0 8px 30px rgba(42, 126, 116, 0.25);
  --fp-shadow-strong: 0 12px 40px rgba(42, 126, 116, 0.6);
}

/* — Reset leger — */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fp-font-body);
  background: var(--fp-paper);
  color: var(--fp-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* Energie RParc : titres en MAJUSCULES, gras, serres. */
h1, h2, h3, h4 { font-family: var(--fp-font-heading); font-weight: 700; line-height: 1.05; letter-spacing: .005em; text-transform: uppercase; margin: 0 0 .4em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
p { margin: 0 0 1em; }
/* Mot accent (dernier mot du titre du hero, facon RParc). */
.fp-accent-word { color: var(--fp-accent); }

/* — Accessibilite — */
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
  height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute !important; word-wrap: normal !important;
}
.fp-skip-link { position: absolute; left: -9999px; top: 0; z-index: 1000; background: var(--fp-primary); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0; }
.fp-skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--fp-secondary); outline-offset: 2px; }

/* — Conteneur — */
.fp-wrap { max-width: var(--fp-wrap); margin: 0 auto; padding: 0 var(--fp-gutter); }
.fp-inner { position: relative; z-index: 2; }
@media (max-width: 720px) { .fp-wrap { padding: 0 var(--fp-gutter-mobile); } }

/* — Sections : variantes de fond — */
section { position: relative; }
.fp-s-light { background: var(--fp-paper); padding: var(--fp-section-y) 0; }
.fp-s-cream { background: var(--fp-cream); padding: var(--fp-section-y) 0; }
.fp-s-accent { background: var(--fp-secondary); color: #fff; padding: var(--fp-section-y) 0; }
.fp-s-primary { background: var(--fp-primary); color: #fff; padding: var(--fp-section-y) 0; }
.fp-s-dark { background: var(--fp-dark); color: #fff; padding: var(--fp-section-y) 0; }
.fp-s-image { color: #fff; }
@media (max-width: 720px) {
  .fp-s-light, .fp-s-cream, .fp-s-accent, .fp-s-primary, .fp-s-dark { padding: var(--fp-section-y-sm) 0; }
}

/* En-tete de section (centre facon RParc) : eyebrow + titre + sous-titre. */
.fp-section-head { margin-bottom: 8px; }
.fp-section-head-center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.fp-section-head-center .fp-lead, .fp-section-head-center .fp-lead-light { max-width: 24ch; }
.fp-section-sub { margin: 10px auto 0; max-width: 64ch; opacity: .92; }
.fp-s-primary .fp-section-sub { color: rgba(255,255,255,.92); }

/* — Eyebrow — */
.fp-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--fp-font-heading); font-weight: 600; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--fp-primary); margin-bottom: 14px; }
.fp-eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--fp-accent); }
.fp-eyebrow-light { color: #fff; }
.fp-eyebrow-light .fp-eyebrow-dot { background: var(--fp-accent); }

.fp-lead { font-family: var(--fp-font-heading); font-weight: 700; text-transform: uppercase; line-height: 1.05; font-size: clamp(1.7rem, 3vw, 2.6rem); max-width: 22ch; }
.fp-lead-light { color: #fff; font-family: var(--fp-font-heading); font-weight: 700; text-transform: uppercase; line-height: 1.05; font-size: clamp(1.7rem, 3vw, 2.6rem); max-width: 22ch; }
.fp-prose { max-width: 68ch; }
.fp-prose p { color: var(--fp-ink-soft); }
.fp-prose strong { color: var(--fp-ink); font-weight: 800; }

/* — Boutons (em-btn RParc) : pilule, Bebas Neue MAJUSCULE, un fond glisse de
   gauche a droite au survol (::before width 0->100%) et la fleche apparait a
   droite (elle s ouvre, le padding-right se libere). Quatre variantes. — */
.fp-btn {
  position: relative; z-index: 1; overflow: hidden;
  display: inline-flex; align-items: center; gap: 0; cursor: pointer;
  font-family: var(--fp-font-heading); font-weight: 400; font-size: 1rem;
  text-transform: uppercase; letter-spacing: 1.2px;
  padding: 14px 28px; border-radius: var(--fp-pill); border: 1px solid transparent;
  transition: transform .3s ease, padding .3s ease, color .3s ease, box-shadow .3s ease;
  text-decoration: none; line-height: 1; white-space: nowrap;
}
/* Le fond qui glisse (remplissage gauche -> droite). */
.fp-btn::before {
  content: ''; position: absolute; top: 0; left: 0; z-index: -1;
  width: 0; height: 100%; transition: width .4s ease;
}
.fp-btn:hover { transform: translateY(-2px); }
.fp-btn:hover::before { width: 100%; }
/* La fleche : repliee par defaut, s ouvre a droite au survol. */
.fp-btn .fp-arr { width: 0; opacity: 0; overflow: hidden; transform: translateX(-6px); transition: width .3s ease, opacity .3s ease, transform .3s ease, margin .3s ease; }
.fp-btn:hover { padding-right: 46px; }
.fp-btn:hover .fp-arr { width: 15px; opacity: 1; transform: translateX(0); margin-left: 9px; }
/* primary : fond teal, texte blanc -> se remplit en blanc, le texte passe teal. */
.fp-btn-primary { background: var(--fp-primary); color: var(--fp-white); border-color: var(--fp-primary); box-shadow: var(--fp-shadow); }
.fp-btn-primary::before { background: var(--fp-white); }
.fp-btn-primary:hover { color: var(--fp-primary); }
/* light : fond blanc, texte teal -> se remplit en teal, le texte passe blanc. */
.fp-btn-light { background: var(--fp-white); color: var(--fp-primary); border-color: var(--fp-white); box-shadow: var(--fp-shadow); }
.fp-btn-light::before { background: var(--fp-primary); }
.fp-btn-light:hover { color: var(--fp-white); }
/* ghost : transparent bordure teal -> se remplit en teal, le texte passe blanc. */
.fp-btn-ghost { background: transparent; color: var(--fp-primary); border-color: var(--fp-primary); }
.fp-btn-ghost::before { background: var(--fp-primary); }
.fp-btn-ghost:hover { color: var(--fp-white); }
/* ghost-light : transparent bordure blanche -> se remplit en blanc, texte teal. */
.fp-btn-ghost-light { background: transparent; color: var(--fp-white); border-color: var(--fp-line-light); }
.fp-btn-ghost-light::before { background: var(--fp-white); }
.fp-btn-ghost-light:hover { color: var(--fp-primary); border-color: var(--fp-white); }
@media (prefers-reduced-motion: reduce) {
  .fp-btn, .fp-btn::before, .fp-btn .fp-arr { transition: none; }
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.fp-nav { position: sticky; top: 0; z-index: 100; height: var(--fp-nav-h); display: flex; align-items: center; background: var(--fp-paper); border-bottom: 1px solid var(--fp-line); transition: background .25s ease, box-shadow .25s ease; }
/* Translucide sombre par-dessus le hero, pleine au scroll (facon RParc). */
.fp-has-dark-hero .fp-nav { position: fixed; left: 0; right: 0; background: transparent; border-color: transparent; color: #fff; }
.fp-has-dark-hero .fp-nav.is-stuck { position: fixed; background: transparent; color: #fff; border-color: transparent; box-shadow: none; }
.fp-has-dark-hero { /* compense la nav fixe : le hero gere son propre padding */ }
.fp-nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; }
.fp-brand { display: inline-flex; align-items: center; font-family: var(--fp-font-heading); font-weight: 700; font-size: 1.3rem; text-transform: uppercase; color: inherit; }
.fp-brand img { max-height: 44px; width: auto; }
.fp-brand-light { display: none; }
.fp-has-dark-hero .fp-nav:not(.is-stuck) .fp-brand-light { display: block; }
.fp-has-dark-hero .fp-nav:not(.is-stuck) .custom-logo { display: none; }
/* Menu horizontal : pilule centree (flex:1) + actions (compte + Reserver) a droite. */
.fp-nav-menu { display: flex; align-items: center; gap: 18px; flex: 1; justify-content: center; }
.fp-menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.fp-menu li { position: relative; }
.fp-menu a { display: inline-flex; align-items: center; gap: 4px; padding: 9px 14px; border-radius: var(--fp-pill); font-family: var(--fp-font-heading); font-weight: 600; font-size: .95rem; text-transform: uppercase; letter-spacing: .02em; color: inherit; }
.fp-menu a:hover { background: color-mix(in srgb, currentColor 12%, transparent); }
.fp-menu .current-menu-item > a, .fp-menu .current_page_item > a { color: var(--fp-accent); }
/* Caret des entrees a sous-menu (facon RParc). */
.fp-menu-caret { display: inline-flex; margin-left: 2px; opacity: .8; transition: transform .2s ease; }
.fp-menu-caret svg { width: 14px; height: 14px; }
.fp-menu .menu-item-has-children:hover > a > .fp-menu-caret, .fp-menu .menu-item-has-children:hover > .fp-menu-caret { transform: rotate(180deg); }
/* Sous-menus deroulants. */
.fp-menu .sub-menu { position: absolute; top: 100%; left: 0; min-width: 220px; margin: 8px 0 0; padding: 8px; list-style: none; background: var(--fp-paper); color: var(--fp-ink); border-radius: var(--fp-radius); box-shadow: var(--fp-shadow); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .18s ease, transform .18s ease, visibility .18s; z-index: 10; }
.fp-menu li:hover > .sub-menu, .fp-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.fp-menu .sub-menu a { display: block; width: 100%; border-radius: var(--fp-radius-sm); color: var(--fp-ink); }
.fp-menu .sub-menu a:hover { background: var(--fp-cream); color: var(--fp-primary); }
.fp-nav-cta { padding: 11px 22px; flex: 0 0 auto; }
.fp-nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 10px; }
.fp-burger, .fp-burger::before, .fp-burger::after { display: block; width: 24px; height: 2px; background: currentColor; border-radius: 2px; position: relative; transition: transform .2s ease, opacity .2s ease; }
.fp-burger::before, .fp-burger::after { content: ''; position: absolute; left: 0; }
.fp-burger::before { top: -7px; }
.fp-burger::after { top: 7px; }

@media (max-width: 980px) {
  .fp-nav-toggle { display: inline-flex; }
  .fp-nav-menu {
    position: fixed; inset: var(--fp-nav-h) 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--fp-paper); color: var(--fp-ink); padding: 18px var(--fp-gutter-mobile) 28px;
    border-bottom: 1px solid var(--fp-line); box-shadow: var(--fp-shadow);
    transform: translateY(-120%); transition: transform .25s ease; gap: 8px;
  }
  .fp-nav-menu.is-open { transform: translateY(0); }
  .fp-menu { flex-direction: column; align-items: stretch; margin: 0; width: 100%; }
  .fp-menu li { position: static; }
  .fp-menu a { padding: 12px 8px; border-bottom: 1px solid var(--fp-line); border-radius: 0; justify-content: space-between; }
  .fp-menu-caret { margin-left: auto; }
  .fp-menu .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; margin: 0 0 0 12px; padding: 0; background: transparent; }
  .fp-menu .sub-menu a { background: transparent; }
  .fp-nav-cta { text-align: center; justify-content: center; margin-top: 8px; }
}

/* ==========================================================================
   Hero (image / slider de fond)
   ========================================================================== */
.fp-hero { min-height: min(88vh, 800px); display: flex; align-items: center; overflow: hidden; padding: calc(var(--fp-nav-h) + 56px) 0 64px; background: var(--fp-dark); }
.fp-hero-bg { position: absolute; inset: 0; z-index: 0; }
.fp-hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease; }
.fp-hero-slide.is-active { opacity: 1; }
.fp-hero:not(.fp-has-slider) .fp-hero-slide { opacity: 1; }
/* Voile colore (teinte primaire Fun Planet) par-dessus la photo sombre. */
.fp-hero-overlay { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(115deg, color-mix(in srgb, var(--fp-dark) 86%, transparent) 0%, color-mix(in srgb, var(--fp-dark) 55%, transparent) 50%, color-mix(in srgb, var(--fp-primary) 38%, transparent) 100%),
  linear-gradient(180deg, rgba(20,22,42,.2) 0%, rgba(20,22,42,.6) 100%); }
/* Hero par defaut (templates a hero texte) : une colonne, mascotte masquee. */
.fp-hero-grid { display: block; width: 100%; }
.fp-hero-col { max-width: 760px; }
.fp-hero-mascotte { display: none; }
/* Grille 2 colonnes (texte + mascotte + badges), facon accueil RParc : activee
   sur l'accueil et tout hero qui pose la classe fp-hero-split. */
.page-template-template-home .fp-hero-grid,
.fp-hero-split .fp-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 40px; }
.page-template-template-home .fp-hero-col,
.fp-hero-split .fp-hero-col { max-width: 620px; }
.page-template-template-home .fp-hero-mascotte,
.fp-hero-split .fp-hero-mascotte { display: flex; }
.fp-hero-eyebrow { font-family: var(--fp-font-heading); font-weight: 600; text-transform: uppercase; letter-spacing: .14em; font-size: .9rem; color: var(--fp-accent); margin-bottom: 14px; }
.fp-hero-title { font-size: clamp(2.4rem, 6vw, 4.6rem); margin-bottom: 18px; }
.fp-hero-lead { font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: 52ch; opacity: .95; }
.fp-hero-actions { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; }
/* Colonne mascotte + badges flottants. */
.fp-hero-mascotte { position: relative; display: flex; align-items: center; justify-content: center; min-height: 360px; }
.fp-hero-mascotte-img { position: relative; z-index: 2; }
.fp-hero-mascotte-img img { max-width: min(440px, 100%); height: auto; filter: drop-shadow(0 26px 40px rgba(0,0,0,.4)); }
/* Petits badges circulaires d'activites qui flottent autour de la mascotte. */
.fp-badges { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.fp-badge { position: absolute; display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 50%; background: var(--fp-paper); color: var(--fp-primary); box-shadow: var(--fp-shadow); animation: fp-float 5s ease-in-out infinite; }
.fp-badge svg { width: 28px; height: 28px; }
.fp-badge-1 { top: 4%; left: 8%; background: var(--fp-accent); color: var(--fp-dark); animation-delay: 0s; }
.fp-badge-2 { top: 0; right: 14%; color: var(--fp-secondary); animation-delay: .6s; }
.fp-badge-3 { top: 42%; right: 0; color: var(--fp-primary); animation-delay: 1.1s; }
.fp-badge-4 { bottom: 12%; right: 10%; background: var(--fp-secondary); color: #fff; animation-delay: 1.6s; }
.fp-badge-5 { bottom: 6%; left: 6%; color: var(--fp-primary); animation-delay: 2.1s; }
@keyframes fp-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) { .fp-badge { animation: none; } }
@media (max-width: 980px) {
  .fp-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .fp-hero-mascotte { min-height: 280px; order: -1; }
  .fp-hero-mascotte-img img { max-width: min(320px, 80%); }
  .fp-badge { width: 50px; height: 50px; }
  .fp-badge svg { width: 24px; height: 24px; }
}

/* ==========================================================================
   Intro / lead editorial (2 colonnes : texte + cluster decoratif)
   ========================================================================== */
.fp-intro-body { margin-top: 18px; }
.fp-intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 48px; }
.fp-intro-aside { display: flex; align-items: center; justify-content: center; }
@media (max-width: 900px) {
  .fp-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .fp-intro-aside { order: -1; }
}

/* Cluster circulaire decoratif (grand cercle central patte + icones autour). */
.fp-cluster { position: relative; width: min(360px, 80vw); aspect-ratio: 1 / 1; }
.fp-cluster-ring { position: absolute; inset: 14%; border-radius: 50%; background: color-mix(in srgb, var(--fp-secondary) 14%, var(--fp-paper)); border: 2px dashed color-mix(in srgb, var(--fp-secondary) 45%, transparent); }
.fp-cluster-core { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 46%; height: 46%; border-radius: 50%; background: var(--fp-accent); color: var(--fp-dark); display: flex; align-items: center; justify-content: center; box-shadow: var(--fp-shadow); }
.fp-cluster-core svg { width: 54%; height: 54%; }
.fp-cluster-core img { width: 78%; height: 78%; object-fit: contain; }
.fp-cluster-sat { position: absolute; width: 26%; height: 26%; border-radius: 50%; background: var(--fp-paper); color: var(--fp-primary); display: flex; align-items: center; justify-content: center; box-shadow: var(--fp-shadow); border: 1px solid var(--fp-line); }
.fp-cluster-sat svg { width: 52%; height: 52%; }
.fp-cluster-sat-1 { top: -2%; left: 37%; color: var(--fp-primary); }
.fp-cluster-sat-2 { top: 18%; right: 0; color: var(--fp-secondary); }
.fp-cluster-sat-3 { bottom: 18%; right: 0; color: var(--fp-primary); }
.fp-cluster-sat-4 { bottom: -2%; left: 37%; color: var(--fp-secondary); }
.fp-cluster-sat-5 { bottom: 18%; left: 0; color: var(--fp-primary); }
.fp-cluster-sat-6 { top: 18%; left: 0; color: var(--fp-secondary); }

/* ==========================================================================
   Cartes (activites / restauration / CPT)
   ========================================================================== */
.fp-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; margin-top: 36px; }
/* Carte signature RParc « em-card-border » : fond creme, bordure teal, radius
   24px ; au survol elle remonte avec une legere rotation et une ombre dure
   decalee (vert tres fonce). C est LA signature visuelle des activites. */
.fp-card { display: flex; flex-direction: column; background: var(--fp-cream); border: 1px solid var(--fp-primary); border-radius: var(--fp-radius-lg); overflow: hidden; transform-origin: center; transition: transform .4s ease, box-shadow .3s ease, border-color .3s ease; }
.fp-card:hover { transform: translateY(-8px) rotate(-2deg); box-shadow: 8px 8px 0 0 var(--fp-secondary-dark); }
@media (prefers-reduced-motion: reduce) { .fp-card:hover { transform: none; } }
.fp-card-media { position: relative; aspect-ratio: 16 / 10; background: var(--fp-cream) center/cover no-repeat; display: flex; align-items: center; justify-content: center; }
.fp-card-icon { color: var(--fp-primary); background: #fff; border-radius: 50%; padding: 12px; box-shadow: var(--fp-shadow); }
.fp-card-body { display: flex; flex-direction: column; gap: 6px; padding: 20px 22px 24px; flex: 1; }
.fp-card-title { font-family: var(--fp-font-heading); font-weight: 600; font-size: 1.2rem; }
.fp-card-desc { color: var(--fp-ink-soft); font-size: .96rem; flex: 1; }
.fp-card-go { display: inline-flex; align-items: center; gap: 6px; color: var(--fp-primary); font-weight: 700; font-size: .92rem; margin-top: 8px; }

/* ==========================================================================
   Offres en cours (carrousel horizontal + fleches rondes)
   ========================================================================== */
.fp-offres-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.fp-offres-label { display: inline-flex; align-items: center; gap: 10px; margin: 0; font-size: clamp(1rem, 2vw, 1.3rem); letter-spacing: .04em; color: var(--fp-ink-soft); }
.fp-offres-caret { display: inline-flex; color: var(--fp-primary); }
.fp-offres-caret svg { width: 18px; height: 18px; }
.fp-offres-nav { display: flex; gap: 10px; }
.fp-carousel-arrow { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer; background: var(--fp-dark); color: #fff; box-shadow: var(--fp-shadow); transition: transform .15s ease, background .2s ease; }
.fp-carousel-arrow:hover { transform: scale(1.06); background: var(--fp-primary); }
.fp-carousel-arrow:disabled { opacity: .4; cursor: default; transform: none; background: var(--fp-dark); }
.fp-carousel-arrow svg { width: 22px; height: 22px; }
.fp-offres-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(280px, 1fr); gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: 6px; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
@media (min-width: 1100px) { .fp-offres-track { grid-auto-columns: minmax(0, calc((100% - 66px) / 4)); } }
.fp-offre-card { scroll-snap-align: start; display: flex; flex-direction: column; background: var(--fp-paper); border: 1px solid var(--fp-line); border-radius: var(--fp-radius); overflow: hidden; box-shadow: var(--fp-shadow); transition: transform .18s ease, box-shadow .18s ease; }
.fp-offre-card:hover { transform: translateY(-4px); box-shadow: var(--fp-shadow-lg); }
.fp-offre-card-media .fp-offre-media { display: block; aspect-ratio: 16 / 10; background: var(--fp-cream) center/cover no-repeat; }
.fp-offre-body { display: flex; flex-direction: column; gap: 10px; padding: 22px 22px 24px; flex: 1; }
.fp-offre-title { margin: 0; font-size: 1.15rem; }
.fp-offre-title a:hover { color: var(--fp-primary); }
.fp-offre-desc { color: var(--fp-ink-soft); font-size: .96rem; flex: 1; margin: 0; }
.fp-offre-cta { align-self: flex-start; padding: 10px 18px; font-size: .92rem; }

/* ==========================================================================
   Cartes-images « duotone » a label (grilles activites / restauration)
   ========================================================================== */
.fp-tile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 40px; }
.fp-tile { position: relative; display: block; aspect-ratio: 4 / 3; border-radius: var(--fp-radius); overflow: hidden; box-shadow: var(--fp-shadow); transition: transform .18s ease, box-shadow .18s ease; }
.fp-tile:hover { transform: translateY(-4px); box-shadow: var(--fp-shadow-lg); }
.fp-tile-media { position: absolute; inset: 0; background: var(--fp-dark) center/cover no-repeat; }
.fp-tile-noimg .fp-tile-media { background: var(--fp-dark); }
/* Voile colore (duotone) : teinte secondaire par defaut, accentuee au survol. */
.fp-tile-veil { position: absolute; inset: 0; background: linear-gradient(180deg, color-mix(in srgb, var(--fp-secondary) 35%, transparent) 0%, color-mix(in srgb, var(--fp-dark) 78%, transparent) 100%); mix-blend-mode: multiply; transition: background .25s ease; }
.fp-tile:hover .fp-tile-veil { background: linear-gradient(180deg, color-mix(in srgb, var(--fp-primary) 42%, transparent) 0%, color-mix(in srgb, var(--fp-dark) 82%, transparent) 100%); }
.fp-tile-label { position: absolute; left: 0; right: 0; bottom: 0; display: flex; align-items: center; gap: 10px; padding: 18px 20px; color: #fff; }
.fp-tile-icon { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; flex: 0 0 auto; border-radius: 50%; background: rgba(255,255,255,.18); }
.fp-tile-icon svg { width: 20px; height: 20px; }
.fp-tile-title { font-family: var(--fp-font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: .02em; font-size: 1.05rem; line-height: 1.1; }
@media (max-width: 1000px) { .fp-tile-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .fp-tile-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 420px) { .fp-tile-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Atouts a icones
   ========================================================================== */
.fp-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 36px; }
/* Icon-box RParc : carte creme, bordure teal (em-ibox), petite ombre teal au
   survol et icone qui grandit legerement. */
.fp-feature { background: var(--fp-cream); border: 1px solid var(--fp-primary); border-radius: var(--fp-radius); padding: 28px 26px; text-align: center; transition: transform .3s ease, box-shadow .3s ease; }
.fp-feature:hover { transform: translateY(-4px); box-shadow: var(--fp-shadow); }
.fp-feature-icon { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 50%; background: color-mix(in srgb, var(--fp-primary) 12%, var(--fp-white)); color: var(--fp-primary); margin-bottom: 16px; transition: transform .3s ease; }
.fp-feature:hover .fp-feature-icon { transform: scale(1.1); }
.fp-feature-title { margin-bottom: 8px; }

/* — Icon-box horizontale (pastille icone + titre, em-ibox RParc) : bordure
   teal, radius 20px ; variante « glass » fond noir translucide + flou (badges
   du hero sur photo). Utilitaires reutilisables. — */
.fp-ibox { display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: var(--fp-radius); border: 1px solid var(--fp-primary); background: var(--fp-white); transition: transform .3s ease; }
.fp-ibox:hover { transform: translateY(-2px); }
.fp-ibox .fp-ibox-title { color: var(--fp-primary); font-family: var(--fp-font-heading); font-weight: 600; font-size: 1.05rem; line-height: 1; white-space: nowrap; }
.fp-ibox svg { width: 18px; height: 18px; color: var(--fp-primary); }
.fp-ibox-glass { background: rgba(0, 0, 0, .3); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border-color: var(--fp-line-light); }
.fp-ibox-glass .fp-ibox-title, .fp-ibox-glass svg { color: var(--fp-white); }
.fp-feature-desc { color: var(--fp-ink-soft); margin: 0; }

/* ==========================================================================
   Galerie
   ========================================================================== */
.fp-galerie-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; margin-top: 32px; }
.fp-galerie-item { display: block; aspect-ratio: 1 / 1; border-radius: var(--fp-radius-sm); background: var(--fp-cream) center/cover no-repeat; transition: transform .18s ease; }
.fp-galerie-item:hover { transform: scale(1.02); }

/* ==========================================================================
   Etapes
   ========================================================================== */
.fp-etapes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; margin-top: 36px; }
.fp-etape { background: var(--fp-paper); border: 1px solid var(--fp-line); border-radius: var(--fp-radius); padding: 26px; }
.fp-etape-num { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--fp-primary); color: #fff; font-family: var(--fp-font-heading); font-weight: 700; margin-bottom: 14px; }
.fp-etape-title { margin-bottom: 6px; }
.fp-etape-desc { color: var(--fp-ink-soft); margin: 0; }

/* ==========================================================================
   Formules
   ========================================================================== */
.fp-formules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; margin-top: 36px; }
.fp-formule { display: flex; flex-direction: column; gap: 10px; background: var(--fp-paper); border: 2px solid var(--fp-line); border-radius: var(--fp-radius-lg); padding: 30px 28px; }
.fp-formule:hover { border-color: var(--fp-primary); }
.fp-formule-desc { color: var(--fp-ink-soft); flex: 1; }
.fp-formule .fp-btn { align-self: flex-start; margin-top: 8px; }

/* ==========================================================================
   Tarifs
   ========================================================================== */
.fp-tarifs-table { width: 100%; border-collapse: collapse; margin-top: 28px; background: #fff; border-radius: var(--fp-radius); overflow: hidden; box-shadow: var(--fp-shadow); }
.fp-tarifs-table td, .fp-tarifs-table th { padding: 14px 18px; border-bottom: 1px solid var(--fp-line); text-align: left; }
.fp-tarifs-table tr:last-child td { border-bottom: 0; }

/* ==========================================================================
   FAQ (accordeon)
   ========================================================================== */
.fp-faq-list { margin-top: 32px; border-top: 1px solid var(--fp-line); }
.fp-faq-item { border-bottom: 1px solid var(--fp-line); }
.fp-faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: none; border: 0; cursor: pointer; padding: 22px 4px; text-align: left; font-family: var(--fp-font-heading); font-weight: 600; font-size: 1.15rem; color: inherit; }
.fp-faq-icon { position: relative; flex: 0 0 auto; width: 20px; height: 20px; }
.fp-faq-icon::before, .fp-faq-icon::after { content: ''; position: absolute; top: 50%; left: 50%; width: 14px; height: 2px; background: var(--fp-primary); transform: translate(-50%, -50%); transition: transform .2s ease; }
.fp-faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.fp-faq-q[aria-expanded="true"] .fp-faq-icon::after { transform: translate(-50%, -50%) rotate(0); }
.fp-faq-a { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.fp-faq-a-inner { padding: 0 4px 22px; color: var(--fp-ink-soft); max-width: 72ch; }

/* ==========================================================================
   Split image + texte
   ========================================================================== */
.fp-split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 0; background: var(--fp-paper); }
.fp-split-media { position: relative; min-height: 460px; }
.fp-split-photo { position: absolute; inset: 0; background-size: cover; background-position: center; }
.fp-split-text { padding: var(--fp-section-y) clamp(24px, 5vw, 72px); }
.fp-img-credit { position: absolute; bottom: 10px; right: 12px; font-size: .75rem; color: #fff; background: rgba(0,0,0,.4); padding: 3px 8px; border-radius: 4px; }
@media (max-width: 860px) { .fp-split { grid-template-columns: 1fr; } .fp-split-media { min-height: 280px; } .fp-split-text { padding: var(--fp-section-y-sm) var(--fp-gutter-mobile); } }

/* ==========================================================================
   Quote / Stats
   ========================================================================== */
.fp-quote-body { font-family: var(--fp-font-heading); font-weight: 600; font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.3; border: 0; margin: 0; max-width: 26ch; }
.fp-quote-cite { margin-top: 16px; opacity: .9; }
.fp-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; margin-top: 36px; }
.fp-stat-val { font-family: var(--fp-font-heading); font-weight: 700; font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1; }
.fp-stat-lbl { font-weight: 700; margin-top: 6px; }
.fp-stat-desc { opacity: .85; font-size: .95rem; }

/* ==========================================================================
   Horaires (2 colonnes : mascotte + table a entetes colorees)
   ========================================================================== */
.fp-horaires-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 48px; }
.fp-horaires-aside { display: flex; align-items: center; justify-content: center; }
.fp-horaires-mascotte img { max-width: 300px; height: auto; filter: drop-shadow(0 20px 30px rgba(0,0,0,.18)); }
.fp-horaires-body { margin-top: 24px; }
/* Table d'horaires (module fp_horaires) : entetes colorees, lignes alternees. */
.fp-horaires-body table { width: 100%; border-collapse: collapse; background: var(--fp-paper); border-radius: var(--fp-radius); overflow: hidden; box-shadow: var(--fp-shadow); }
.fp-horaires-body thead th, .fp-horaires-body table th { background: var(--fp-secondary); color: #fff; font-family: var(--fp-font-heading); font-weight: 600; text-transform: uppercase; letter-spacing: .03em; text-align: left; padding: 14px 18px; }
.fp-horaires-body td { padding: 13px 18px; border-bottom: 1px solid var(--fp-line); }
.fp-horaires-body tbody tr:nth-child(even) { background: var(--fp-cream); }
.fp-horaires-body tbody tr:last-child td { border-bottom: 0; }
@media (max-width: 900px) {
  .fp-horaires-grid { grid-template-columns: 1fr; gap: 28px; }
  .fp-horaires-aside { order: -1; }
  .fp-horaires-mascotte img { max-width: 220px; }
}

/* ==========================================================================
   Mascotte
   ========================================================================== */
.fp-mascotte-inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center; }
.fp-mascotte-figure img { max-width: 220px; height: auto; }
.fp-mascotte-bubble, .fp-mascotte-inline .fp-mascotte-bubble { position: relative; background: var(--fp-accent); color: var(--fp-ink); padding: 20px 26px; border-radius: var(--fp-radius); font-family: var(--fp-font-heading); font-weight: 600; font-size: 1.2rem; max-width: 36ch; box-shadow: var(--fp-shadow); }
.fp-mascotte-inline { display: inline-flex; align-items: center; gap: 16px; }
.fp-mascotte-inline .fp-mascotte-figure img { max-width: 120px; }

/* ==========================================================================
   CTA pleine largeur
   ========================================================================== */
.fp-cta-section { background: var(--fp-primary); color: #fff; padding: var(--fp-section-y) 0; text-align: center; overflow: hidden; }
.fp-cta-photo { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .35; }
.fp-cta-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, color-mix(in srgb, var(--fp-primary) 70%, transparent), color-mix(in srgb, var(--fp-primary-dark) 85%, transparent)); }
.fp-cta-inner { max-width: 760px; margin: 0 auto; }
.fp-cta-lead { color: #fff; font-size: clamp(1.8rem, 4vw, 3rem); }
.fp-cta-desc { opacity: .95; max-width: 52ch; margin: 0 auto 12px; }
.fp-cta-actions { margin-top: 24px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Pages generiques / 404 / prose
   ========================================================================== */
.fp-page-hero { padding-top: calc(var(--fp-nav-h) + 40px); }
.fp-page-title { margin: 0; }
.fp-breadcrumb { font-size: .9rem; color: var(--fp-ink-soft); margin-bottom: 12px; }
.fp-breadcrumb a:hover { color: var(--fp-primary); }
.fp-sep { margin: 0 8px; opacity: .5; }
.fp-prose img { border-radius: var(--fp-radius); }
.fp-prose h2 { margin-top: 1.4em; }
.fp-404 { text-align: center; padding-top: calc(var(--fp-nav-h) + 80px); padding-bottom: 120px; }
.fp-404-title { font-size: clamp(2rem, 5vw, 3.4rem); }
.fp-404-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

/* ==========================================================================
   Footer (bandeau newsletter colore + mascottes + colonnes sombres)
   ========================================================================== */
.fp-footer { background: var(--fp-dark); color: #fff; }

/* Bandeau newsletter colore avec mascottes et raccourcis, facon RParc. */
.fp-footer-newsletter { background: var(--fp-secondary); position: relative; overflow: hidden; }
.fp-footer-newsletter-inner { display: grid; grid-template-columns: 1.1fr auto auto; align-items: center; gap: 28px; padding: 40px 0; }
.fp-newsletter-title { color: #fff; font-size: clamp(1.1rem, 2vw, 1.5rem); margin: 0 0 14px; max-width: 26ch; }
.fp-newsletter { display: flex; gap: 10px; flex-wrap: wrap; }
.fp-newsletter input[type="email"] { flex: 1 1 240px; min-width: 0; padding: 13px 16px; border: 0; border-radius: var(--fp-pill); background: #fff; color: var(--fp-ink); font: inherit; }
.fp-footer-mascottes { display: flex; align-items: flex-end; gap: 0; align-self: end; }
.fp-footer-mascotte { width: 130px; height: auto; }
.fp-footer-mascotte-2 { margin-left: -36px; }
.fp-footer-shortcuts { display: flex; flex-direction: column; gap: 12px; }
.fp-footer-shortcut { display: inline-flex; align-items: center; gap: 12px; padding: 14px 22px; border-radius: var(--fp-pill); background: color-mix(in srgb, var(--fp-dark) 78%, transparent); color: #fff; font-family: var(--fp-font-heading); font-weight: 600; text-transform: uppercase; letter-spacing: .02em; box-shadow: var(--fp-shadow); transition: transform .15s ease, background .2s ease; }
.fp-footer-shortcut:hover { transform: translateY(-2px); background: var(--fp-dark); }
.fp-footer-shortcut-icon { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: var(--fp-accent); color: var(--fp-dark); }
.fp-footer-shortcut-icon svg { width: 22px; height: 22px; }
@media (max-width: 1000px) {
  .fp-footer-newsletter-inner { grid-template-columns: 1fr; gap: 20px; }
  .fp-footer-mascottes { display: none; }
  .fp-footer-shortcuts { flex-direction: row; flex-wrap: wrap; }
}

.fp-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding: 72px 0 48px; }
.fp-footer-wordmark { font-family: var(--fp-font-heading); font-weight: 700; text-transform: uppercase; font-size: 2.4rem; line-height: .95; color: #fff; }
.fp-footer-tag { color: rgba(255,255,255,.7); margin: 14px 0 18px; max-width: 34ch; }
.fp-footer-h { font-size: 1rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; color: var(--fp-accent); }
.fp-footer-col ul { list-style: none; margin: 0 0 16px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.fp-footer-col a { color: rgba(255,255,255,.8); }
.fp-footer-col a:hover { color: #fff; }
.fp-footer-address, .fp-footer-hours { color: rgba(255,255,255,.7); }
.fp-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.fp-social { display: inline-block; padding: 7px 14px; border: 1px solid var(--fp-line-light); border-radius: var(--fp-pill); font-size: .9rem; }
.fp-social:hover { background: rgba(255,255,255,.1); }
/* Reseaux en pastilles a icones (facon RParc). */
.fp-socials-icons .fp-social-icon { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; padding: 0; border-radius: 50%; color: #fff; }
.fp-social-icon svg { width: 22px; height: 22px; }
.fp-social-icon:hover { background: var(--fp-primary); border-color: var(--fp-primary); }
.fp-footer-bottom { border-top: 1px solid var(--fp-line-light); }
.fp-footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; flex-wrap: wrap; }
.fp-copyright { margin: 0; color: rgba(255,255,255,.6); font-size: .9rem; }
.fp-footer-legal { list-style: none; display: flex; gap: 18px; margin: 0; padding: 0; }
.fp-footer-legal a { color: rgba(255,255,255,.6); font-size: .9rem; }
.fp-footer-legal a:hover { color: #fff; }
@media (max-width: 860px) { .fp-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 520px) { .fp-footer-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Widget mascotte flottant (bas-droite, relie au bot de support)
   ========================================================================== */
.fp-widget { position: fixed; right: 22px; bottom: 22px; z-index: 200; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.fp-widget-toggle { position: relative; width: 72px; height: 72px; padding: 0; border: 3px solid var(--fp-paper); border-radius: 50%; background: var(--fp-accent); cursor: pointer; box-shadow: var(--fp-shadow-lg); transition: transform .15s ease; overflow: visible; }
.fp-widget-toggle:hover { transform: scale(1.05); }
.fp-widget-avatar { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; object-position: top center; }
.fp-widget-dot { position: absolute; top: 4px; right: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--fp-primary); border: 2px solid var(--fp-paper); }
.fp-widget-panel { width: min(300px, 78vw); padding: 20px 22px; background: var(--fp-paper); color: var(--fp-ink); border-radius: var(--fp-radius); box-shadow: var(--fp-shadow-lg); }
.fp-widget-panel[hidden] { display: none; }
.fp-widget-hello { font-family: var(--fp-font-heading); font-weight: 700; text-transform: uppercase; margin: 0 0 6px; }
.fp-widget-msg { color: var(--fp-ink-soft); margin: 0 0 14px; font-size: .95rem; }
.fp-widget-cta { width: 100%; justify-content: center; }
@media (max-width: 520px) { .fp-widget { right: 14px; bottom: 14px; } .fp-widget-toggle { width: 60px; height: 60px; } }

/* ==========================================================================
   Carte + formulaire de contact
   ========================================================================== */
.fp-map iframe { display: block; border-radius: var(--fp-radius); }
.fp-contact-form { display: flex; flex-direction: column; gap: 16px; max-width: 640px; }
.fp-contact-form label { display: flex; flex-direction: column; gap: 6px; font-weight: 600; }
.fp-contact-form input, .fp-contact-form textarea { font: inherit; padding: 12px 14px; border: 1px solid var(--fp-line-strong); border-radius: var(--fp-radius-sm); background: #fff; }
.fp-contact-form .fp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fp-form-success { background: color-mix(in srgb, var(--fp-secondary) 15%, #fff); border: 1px solid var(--fp-secondary); border-radius: var(--fp-radius-sm); padding: 16px; }
.fp-form-errors { background: #fdecea; border: 1px solid #e0440e; border-radius: var(--fp-radius-sm); padding: 12px 16px; }
@media (max-width: 600px) { .fp-contact-form .fp-form-row { grid-template-columns: 1fr; } }

/* ==========================================================================
   Reveal au scroll (progressif, desactive si reduced-motion)
   ========================================================================== */
.fp-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.fp-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .fp-reveal { opacity: 1; transform: none; transition: none; } }
