/* ═══════════════════════════════════════════
   LAFARM CAMP — Premium Sport Landing Page
   Design tokens → mobile-first → 8pt system
   ═══════════════════════════════════════════ */

:root {
    --lce-green-deep: #2E3B22;
    --lce-green-forest: #3A4A2A;
    --lce-green-accent: #C5D67A;
    --lce-cream: #F2EFE6;
    --lce-white: #FAFAF7;
    --lce-black: #1A1A1A;
    --lce-gray: #4A4A4A;
    --lce-gray-light: #8A8A8A;
    --lce-radius: 8px;
    --lce-radius-lg: 16px;
    --lce-transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ── RESET (scoped) ── */
.lce-camp-page, .lce-camp-page * { margin: 0; padding: 0; box-sizing: border-box; }
.lce-camp-page { font-family: 'Inter', system-ui, sans-serif; color: var(--lce-black); background: var(--lce-white); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
.lce-camp-page img { max-width: 100%; height: auto; display: block; }
.lce-camp-page a { text-decoration: none; color: inherit; }
.lce-camp-page ul { list-style: none; }

/* ── UTILITIES ── */
.lce-container { width: 90%; max-width: 1200px; margin: 0 auto; }
.lce-label { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--lce-gray-light); margin-bottom: 16px; }
.lce-label--light { color: rgba(255,255,255,.5); }
.lce-label--accent { color: var(--lce-green-accent); }
.lce-h2 { font-family: 'Anton', sans-serif; font-size: clamp(28px, 5vw, 48px); line-height: 1.05; text-transform: uppercase; letter-spacing: -0.5px; margin-bottom: 24px; }
.lce-h2--light { color: #fff; }
.lce-prose { font-size: 15px; color: var(--lce-gray); line-height: 1.8; }
.lce-prose p { margin-bottom: 16px; }

/* ── BUTTONS ── */
.lce-btn { display: inline-flex; align-items: center; gap: 8px; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; padding: 14px 32px; border-radius: 4px; transition: all var(--lce-transition); cursor: pointer; border: 2px solid transparent; white-space: nowrap; }
.lce-btn--white { background: #fff; color: var(--lce-black); }
.lce-btn--white:hover { background: var(--lce-green-accent); color: var(--lce-green-deep); }
.lce-btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.lce-btn--outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.lce-btn--dark { background: var(--lce-green-deep); color: #fff !important; }
.lce-btn--dark:hover { background: var(--lce-green-forest); color: #fff !important; }
.lce-btn--accent { background: var(--lce-green-accent); color: var(--lce-green-deep) !important; border-color: var(--lce-green-accent); }
.lce-btn--accent:hover { background: #d4e48a; color: var(--lce-green-deep) !important; }
/* Light button for use on dark backgrounds */
.lce-btn--light { background: #fff; color: var(--lce-green-deep) !important; }
.lce-btn--light:hover { background: var(--lce-green-accent); color: var(--lce-green-deep) !important; }
/* Ensure all buttons on dark sections have white text when outline */
.lce-btn--outline { color: #fff !important; }
.lce-btn--white { color: var(--lce-black) !important; }
.lce-btn--white:hover { color: var(--lce-green-deep) !important; }
.lce-btn--sm { padding: 10px 20px; font-size: 13px; }
.lce-btn__arrow { transition: transform var(--lce-transition); }
.lce-btn:hover .lce-btn__arrow { transform: translateX(4px); }

/* ── REVEAL ANIMATION ── */
.lce-reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.lce-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ═══ HEADER ═══ */
.lce-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: all var(--lce-transition); }
.lce-header.is-scrolled { background: rgba(30,40,22,.97); backdrop-filter: blur(12px); padding: 12px 0; box-shadow: 0 1px 0 rgba(255,255,255,.06); }
.lce-header__inner { display: flex; align-items: center; justify-content: space-between; width: 90%; max-width: 1200px; margin: 0 auto; }
.lce-header__logo img { height: 32px; width: auto; filter: brightness(0) invert(1); }
.lce-header__nav { display: none; gap: 32px; }
.lce-header__nav a { color: rgba(255,255,255,.75); font-size: 13px; font-weight: 500; letter-spacing: .5px; transition: color var(--lce-transition); }
.lce-header__nav a:hover { color: #fff; }
.lce-header__actions { display: flex; align-items: center; gap: 16px; }
.lce-header .lce-btn--accent { color: var(--lce-green-deep); font-weight: 700; }
.lce-header__places { font-size: 12px; color: var(--lce-green-accent); font-weight: 600; display: none; }
.lce-header__burger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.lce-header__burger span { width: 24px; height: 2px; background: #fff; transition: all var(--lce-transition); }
.lce-header__burger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.lce-header__burger.is-open span:nth-child(2) { opacity: 0; }
.lce-header__burger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu overlay */
.lce-header__nav.is-open { display: flex; flex-direction: column; position: fixed; inset: 0; top: 60px; background: rgba(30,40,22,.98); padding: 48px 32px; gap: 24px; z-index: 999; }
.lce-header__nav.is-open a { font-size: 20px; color: #fff; }

/* ═══ HERO ═══ */
.lce-hero { position: relative; min-height: 100vh; min-height: 100dvh; display: flex; align-items: flex-end; background-size: cover; background-position: center top; padding: 120px 5% 64px; }
.lce-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,26,.85) 0%, rgba(26,26,26,.4) 40%, rgba(26,26,26,.15) 100%); }
.lce-hero__content { position: relative; z-index: 2; max-width: 680px; }
.lce-hero__badge { display: inline-flex; align-items: center; gap: 12px; background: var(--lce-green-accent); color: var(--lce-green-deep); padding: 8px 16px; border-radius: 4px; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px; }
.lce-hero__dur { opacity: .7; }
.lce-hero__title { margin-bottom: 16px; }
.lce-hero__title-camp { display: block; font-family: 'Anton', sans-serif; font-size: clamp(42px, 8vw, 72px); line-height: 1; text-transform: uppercase; color: #fff; }
.lce-hero__title-coach { display: block; font-family: 'Inter', sans-serif; font-size: clamp(16px, 3vw, 24px); font-weight: 400; color: rgba(255,255,255,.7); margin-top: 4px; }
.lce-hero__promesse { font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 32px; max-width: 520px; }
.lce-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.lce-hero__reassurance { display: flex; flex-wrap: wrap; gap: 16px; font-size: 11px; color: rgba(255,255,255,.45); letter-spacing: .5px; }

/* ═══ STATS BANDEAU ═══ */
.lce-stats { background: var(--lce-green-deep); padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.lce-stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; text-align: center; }
.lce-stats__val { display: block; font-family: 'Anton', sans-serif; font-size: 28px; color: #fff; }
.lce-stats__label { font-size: 11px; color: rgba(255,255,255,.5); letter-spacing: 1px; text-transform: uppercase; }

/* ═══ DISCIPLINE ═══ */
.lce-discipline { padding: 80px 0; background: var(--lce-cream); }
.lce-discipline__grid { display: grid; gap: 48px; }
.lce-discipline__media img { border-radius: var(--lce-radius-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.lce-discipline__points { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 24px; margin-top: 32px; }
.lce-discipline__point { text-align: center; }
.lce-discipline__point-icon { display: block; font-size: 24px; margin-bottom: 8px; }
.lce-discipline__point strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.lce-discipline__point span { font-size: 12px; color: var(--lce-gray-light); line-height: 1.5; }

/* ═══ COACH ═══ */
.lce-coach { padding: 80px 0; background: var(--lce-white); }
.lce-coach__grid { display: grid; gap: 32px; }
.lce-coach__portrait { order: -1; } /* Photo first on mobile */
.lce-coach__portrait img { border-radius: var(--lce-radius-lg); width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; }
.lce-coach__role { font-size: 14px; font-weight: 600; color: var(--lce-green-forest); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.lce-coach__intro { font-size: 15px; color: var(--lce-gray); line-height: 1.8; margin-bottom: 24px; white-space: pre-line; }
.lce-coach__palmares { margin-bottom: 24px; }
.lce-coach__palmares li { padding: 6px 0; font-size: 14px; color: var(--lce-gray); }
.lce-coach__palmares li::before { content: '✓'; color: var(--lce-green-forest); font-weight: 700; margin-right: 12px; }
.lce-coach__stats { display: flex; gap: 16px; }
.lce-coach__stat { text-align: center; padding: 24px; background: var(--lce-cream); border-radius: var(--lce-radius); flex: 1; }
.lce-coach__stat-val { display: block; font-family: 'Anton', sans-serif; font-size: 32px; color: var(--lce-green-deep); }
.lce-coach__stat-label { font-size: 12px; color: var(--lce-gray-light); text-transform: uppercase; letter-spacing: 1px; }

/* ═══ PROGRAMME ═══ */
.lce-programme { padding: 80px 0; background: var(--lce-green-deep); color: #fff; }
.lce-programme__timeline { display: grid; gap: 32px; margin-top: 40px; }
.lce-programme__day { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--lce-radius); padding: 32px 24px; }
.lce-programme__day-head { margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.08); }
.lce-programme__day-num { font-family: 'Anton', sans-serif; font-size: 24px; color: var(--lce-green-accent); }
.lce-programme__day-title { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.lce-programme__day-sub { font-size: 12px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 1px; }
.lce-programme__slots li { display: flex; gap: 16px; padding: 8px 0; font-size: 14px; color: rgba(255,255,255,.7); }
.lce-programme__time { font-weight: 600; color: var(--lce-green-accent); min-width: 52px; }

/* ═══ INCLUS + LIEU ═══ */
.lce-inclus-lieu { padding: 80px 0; background: var(--lce-cream); }
.lce-inclus-lieu__grid { display: grid; gap: 48px; }
.lce-inclus-lieu__cards { display: grid; gap: 24px; }
.lce-card { background: #fff; border-radius: var(--lce-radius); padding: 32px; }
.lce-card h3 { font-family: 'Anton', sans-serif; font-size: 20px; text-transform: uppercase; margin-bottom: 16px; }
.lce-card li { padding: 6px 0; font-size: 14px; color: var(--lce-gray); }
.lce-card li::before { content: '○'; margin-right: 10px; color: var(--lce-green-forest); }
.lce-galerie__main img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: var(--lce-radius-lg); }
.lce-galerie__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 8px; }
.lce-galerie__thumb { position: relative; overflow: hidden; border-radius: var(--lce-radius); cursor: pointer; }
.lce-galerie__thumb img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform var(--lce-transition); }
.lce-galerie__thumb:hover img { transform: none; }
.lce-galerie__caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 6px 8px; background: rgba(0,0,0,.6); color: #fff; font-size: 10px; text-transform: uppercase; letter-spacing: 1px; }

/* ═══ RESTAURATION ═══ */
.lce-resto { padding: 0; background: var(--lce-green-forest); color: #fff; overflow: hidden; }
.lce-resto__grid { display: grid; gap: 0; }
.lce-resto__galerie { order: -1; } /* Images first on mobile */
.lce-resto__galerie { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.lce-resto__img img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform var(--lce-transition); }
.lce-resto__img:hover img { transform: none; }
.lce-resto__img:first-child { grid-column: 1 / -1; } /* First image full width on mobile */
.lce-resto__img:first-child img { aspect-ratio: 16/9; }
.lce-resto__content { padding: 48px 5% 56px; }
.lce-resto__texte { font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.lce-resto__tags { display: flex; flex-wrap: wrap; gap: 12px; }
.lce-resto__tag { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border: 1px solid rgba(255,255,255,.15); border-radius: 99px; font-size: 12px; font-weight: 500; }
.lce-resto__tag-icon { font-size: 16px; }


.lce-resto__img:only-child { grid-column: 1 / -1; }
.lce-resto__img:only-child img { width: 100%; height: 100%; object-fit: cover; }

/* ═══ AVIS VIDEO ═══ */
.lce-avis { padding: 80px 0; background: var(--lce-white); }
.lce-avis__title { margin-bottom: 48px; }
.lce-avis__carousel { position: relative; }
.lce-avis__track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 8px; }
.lce-avis__track::-webkit-scrollbar { display: none; }
.lce-avis__card { flex: 0 0 280px; scroll-snap-align: start; }
.lce-avis__thumb { position: relative; border-radius: var(--lce-radius-lg); overflow: hidden; aspect-ratio: 3/4; cursor: pointer; }
.lce-avis__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--lce-transition); }
.lce-avis__thumb:hover img { transform: none; }
.lce-avis__play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: none; border: none; cursor: pointer; z-index: 2; }
.lce-avis__play svg { filter: drop-shadow(0 2px 8px rgba(0,0,0,.3)); transition: transform var(--lce-transition); }
.lce-avis__play:hover svg { transform: scale(1.1); }
.lce-avis__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: var(--lce-radius-lg); z-index: 3; background: #000; display: none; }
.lce-avis__meta { padding: 16px 0; }
.lce-avis__nom { font-size: 16px; display: block; }
.lce-avis__sub { font-size: 12px; color: var(--lce-gray-light); display: block; margin-top: 2px; }
.lce-avis__citation { font-size: 13px; color: var(--lce-gray); font-style: italic; margin-top: 8px; }
.lce-avis__arrow { position: absolute; top: 35%; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.9); border: 1px solid rgba(0,0,0,.08); font-size: 18px; cursor: pointer; display: none; align-items: center; justify-content: center; transition: all var(--lce-transition); z-index: 2; }
.lce-avis__arrow:hover { background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,.1); }
.lce-avis__arrow--prev { left: -24px; }
.lce-avis__arrow--next { right: -24px; }
.lce-avis__dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.lce-avis__dots .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,.15); cursor: pointer; transition: all var(--lce-transition); }
.lce-avis__dots .dot.is-active { background: var(--lce-green-deep); width: 24px; border-radius: 4px; }

/* ═══ FAQ ═══ */
.lce-faq { padding: 80px 0; background: var(--lce-cream); }
.lce-faq__grid { display: grid; gap: 48px; }
.lce-faq__item { border-bottom: 1px solid rgba(0,0,0,.08); }
.lce-faq__item summary { padding: 20px 0; font-size: 15px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; list-style: none; }
.lce-faq__item summary::-webkit-details-marker { display: none; }
.lce-faq__item summary::after { content: '+'; font-size: 20px; font-weight: 300; color: var(--lce-gray-light); transition: transform var(--lce-transition); flex-shrink: 0; margin-left: 16px; }
.lce-faq__item[open] summary::after { content: '−'; }
.lce-faq__answer { padding: 0 0 20px; font-size: 14px; color: var(--lce-gray); line-height: 1.8; }

/* ═══ TARIFS ═══ */
.lce-tarifs { padding: 80px 0; background: var(--lce-green-deep); color: #fff; }
.lce-tarifs__grid { display: grid; gap: 48px; }
.lce-tarifs__sub { font-size: 14px; color: rgba(255,255,255,.5); margin-top: 12px; }
.lce-tarifs__cards { display: grid; gap: 16px; }
.lce-tarifs__card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--lce-radius); padding: 32px; text-align: center; }
.lce-tarifs__card--highlight { border-color: var(--lce-green-accent); }
.lce-tarifs__card-label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.5); margin-bottom: 12px; }
.lce-tarifs__card-price { display: block; font-family: 'Anton', sans-serif; font-size: 42px; color: #fff; margin-bottom: 8px; white-space: nowrap; }
.lce-tarifs__card-detail { display: block; font-size: 12px; color: rgba(255,255,255,.4); margin-bottom: 24px; }
.lce-tarifs__reassurance { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lce-tarifs__reassurance div { font-size: 13px; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 8px; }

/* ═══ BANDE INCLUS ═══ */
.lce-band { padding: 48px 0; background: var(--lce-white); border-top: 1px solid rgba(0,0,0,.06); border-bottom: 1px solid rgba(0,0,0,.06); }
.lce-band__title { display: block; font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--lce-gray-light); text-align: center; margin-bottom: 32px; }
.lce-band__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 24px; text-align: center; }
.lce-band__icon { display: block; font-size: 28px; margin-bottom: 8px; }
.lce-band__item strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: .5px; }
.lce-band__item span { font-size: 11px; color: var(--lce-gray-light); }

/* ═══ CTA FINAL ═══ */
.lce-cta-final { position: relative; padding: 120px 5%; text-align: center; background-size: cover; background-position: center; }
.lce-cta-final__overlay { position: absolute; inset: 0; background: rgba(30,40,22,.82); }
.lce-cta-final__content { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
.lce-cta-final h2 { font-family: 'Anton', sans-serif; font-size: clamp(28px, 5vw, 42px); color: #fff; text-transform: uppercase; line-height: 1.1; margin-bottom: 16px; }
.lce-cta-final p { font-size: 15px; color: rgba(255,255,255,.6); margin-bottom: 32px; line-height: 1.7; }
.lce-cta-final__places { display: block; margin-top: 16px; font-size: 12px; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: 1px; }

/* ═══ FOOTER ═══ */
.lce-footer { padding: 64px 0 32px; background: var(--lce-black); color: rgba(255,255,255,.6); }
.lce-footer__grid { display: grid; gap: 32px; }
.lce-footer__brand img { height: 28px; width: auto; filter: brightness(0) invert(1); opacity: .7; }
.lce-footer__col { font-size: 13px; line-height: 1.8; }
.lce-footer__col strong { color: rgba(255,255,255,.9); display: block; margin-bottom: 4px; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.lce-footer__col a { color: rgba(255,255,255,.6); transition: color var(--lce-transition); }
.lce-footer__col a:hover { color: #fff; }

/* ═══ LIGHTBOX ═══ */
.lce-lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.92); display: none; align-items: center; justify-content: center; }
.lce-lightbox.is-open { display: flex; }
.lce-lightbox__close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: #fff; font-size: 36px; cursor: pointer; z-index: 2; }
.lce-lightbox__content { width: 90%; max-width: 800px; }
.lce-lightbox__content video { width: 100%; border-radius: var(--lce-radius); }

/* ═══════════════════════════════════════════
   DESKTOP BREAKPOINTS
   ═══════════════════════════════════════════ */

@media (min-width: 768px) {
    .lce-hero { background-position: center center; }

    .lce-header__nav { display: flex; }
    .lce-header__places { display: inline; }
    .lce-header__burger { display: none; }

    .lce-discipline__grid { grid-template-columns: 1fr 1fr; align-items: center; }
    .lce-coach__grid { grid-template-columns: 1fr 1fr 200px; align-items: start; }
    .lce-coach__portrait { order: 0; } /* Reset order on desktop — portrait in center */
    .lce-programme__timeline { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
    .lce-inclus-lieu__grid { grid-template-columns: 1fr 1.5fr; }
    .lce-inclus-lieu__cards { grid-template-columns: 1fr 1fr; }
    .lce-resto { padding: 0; }
    .lce-resto__grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
    .lce-resto__galerie { order: 0; grid-template-columns: 1fr 1fr; height: 100%; }
    .lce-resto__galerie:has(.lce-resto__img:only-child) { grid-template-columns: 1fr; }
    .lce-resto__img { overflow: hidden; }
    .lce-resto__img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: auto; }
    .lce-resto__img:first-child { grid-column: auto; }
    .lce-resto__img:first-child img { aspect-ratio: auto; }
    .lce-resto__img:only-child { height: 100%; min-height: 400px; }
    .lce-resto__img:only-child img { height: 100%; min-height: 400px; }
    .lce-resto__content { padding: 64px 48px; display: flex; flex-direction: column; justify-content: center; }
    .lce-faq__grid { grid-template-columns: 1fr 2fr; align-items: start; }
    .lce-tarifs__grid { grid-template-columns: 1fr 1fr 1fr; align-items: start; }
    .lce-tarifs__cards { grid-template-columns: 1fr 1fr; }
    .lce-footer__grid { grid-template-columns: auto 1fr 1fr auto; }

    .lce-avis__card { flex: 0 0 320px; }
    .lce-avis__arrow { display: flex; }

    .lce-stats__val { font-size: 36px; }

    /* More generous padding on desktop */
    .lce-discipline, .lce-coach, .lce-programme, .lce-inclus-lieu,
    .lce-resto, .lce-avis, .lce-faq, .lce-tarifs { padding: 120px 0; }
}

@media (min-width: 1024px) {
    .lce-hero { padding: 0 5% 80px; }
    .lce-hero__title-camp { font-size: 72px; }
}