﻿@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* ── Palette bleue ──────────────────────────── */
  --white-hsl: 208, 78%, 16%;          /* bleu profond — rivière */
  --blue:        hsla(var(--white-hsl), 1);   /* #082C4E */
  --blue-2:      hsla(208, 72%, 22%, 1);      /* légèrement plus clair */
  --blue-light:  hsla(208, 60%, 94%, 1);      /* fond clair bleuté */
  --blue-mid:    hsla(208, 55%, 30%, 1);      /* bleu moyen (muted) */

  /* ── Accent ─────────────────────────────────── */
  --yellow:      #E8C832;
  --yellow-hover:#d4b420;

  /* ── Neutres ─────────────────────────────────── */
  --dark:        var(--blue);
  --dark-2:      var(--blue-2);
  --white:       #FFFFFF;
  --light-bg:    var(--blue-light);
  --text:        #1A2C3D;
  --text-muted:  var(--blue-mid);
  --border:      hsla(208, 40%, 80%, 1);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --max-w: 1400px;
  --gutter: clamp(1.5rem, 5vw, 4rem);
  --section-pad: clamp(4rem, 8vw, 8rem);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

/* ── Typography ─────────────────────────────── */
h1 { font-family: var(--font-serif); font-size: clamp(2.4rem, 5.5vw, 5rem); font-weight: 700; line-height: 1.1; }
h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.2; }
h3 { font-family: var(--font-serif); font-size: clamp(1.3rem, 2.5vw, 2rem); font-weight: 400; line-height: 1.3; }
h4 { font-family: var(--font-sans); font-size: 1.1rem; font-weight: 700; line-height: 1.4; }
p  { line-height: 1.75; }
ul { padding-left: 1.25rem; }
li { line-height: 1.75; }

.label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.75rem;
}

/* ── Container ──────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-block; padding: 0.875rem 2rem;
  font-family: var(--font-sans); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  cursor: pointer; border: 2px solid transparent; transition: all 0.22s ease;
  line-height: 1;
}
.btn-yellow  { background: var(--yellow); color: var(--dark); border-color: var(--yellow); }
.btn-yellow:hover { background: var(--yellow-hover); border-color: var(--yellow-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,200,50,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn-dark    { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover { background: var(--yellow); color: var(--dark); border-color: var(--yellow); }
.btn-white   { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn-white:hover { background: var(--yellow); border-color: var(--yellow); }

/* ── Header ─────────────────────────────────── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: hsla(var(--white-hsl), 0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
}

.header-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem var(--gutter); gap: 2rem;
}

.header-logo { flex-shrink: 0; display: flex; align-items: center; }
.header-logo img { height: 52px; width: auto; display: block; }

.header-nav { display: flex; align-items: center; gap: 2.5rem; }
.header-nav a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.2s; padding-bottom: 2px; border-bottom: 2px solid transparent;
}
.header-nav a:hover,
.header-nav a.active { color: var(--yellow); border-bottom-color: var(--yellow); }

.header-cta { display: flex; align-items: center; gap: 1rem; }
.header-phone {
  color: var(--yellow); font-weight: 700; font-size: 0.95rem; text-decoration: none;
  letter-spacing: 0.03em; transition: opacity 0.2s; white-space: nowrap;
}
.header-phone:hover { opacity: 0.8; }

/* Mobile menu button */
.hamburger {
  display: none; background: none; border: none; cursor: pointer; padding: 4px;
  flex-direction: column; gap: 5px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: all 0.25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
#mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 190;
  background: hsla(var(--white-hsl), 0.98); flex-direction: column;
  align-items: center; justify-content: center; gap: 1.25rem;
  padding: 4.5rem 2rem 2rem;
  overflow-y: auto;
}
#mobile-nav.open { display: flex; }
#mobile-nav a {
  color: var(--white); text-decoration: none; font-size: 1.4rem;
  font-family: var(--font-serif); transition: color 0.2s;
}
#mobile-nav a:hover { color: var(--yellow); }
#mobile-nav .btn { width: 100%; text-align: center; max-width: 280px; }

/* ── Sections ────────────────────────────────── */
section { padding: var(--section-pad) 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark .label { color: rgba(255,255,255,0.45); }
.section-light { background: var(--light-bg); }
.section-yellow { background: var(--yellow); color: var(--dark); }
.section-yellow .label { color: rgba(0,0,0,0.45); }

/* ── Hero ────────────────────────────────────── */
#hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding-top: 80px; background: var(--dark);
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-image: url('https://images.squarespace-cdn.com/content/v1/667a69565854de283d799a24/e4eb3ff1-1d12-4b18-ab2a-8a7a58bd7129/printemps2.jpeg');
  background-size: cover; background-position: center;
  opacity: 0.25;
}
.hero-content {
  position: relative; z-index: 2; padding: 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.hero-logo { width: min(260px, 55vw); }
.hero-tagline { color: rgba(255,255,255,0.75); font-size: clamp(1rem, 2.5vw, 1.3rem); max-width: 580px; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.4); font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  animation: bounce 2s infinite;
}
.hero-scroll svg { opacity: 0.5; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ── Philosophy ──────────────────────────────── */
.philosophy-grid {
  display: grid; grid-template-columns: 1fr 1.4fr 1fr;
  gap: 3rem; align-items: center;
}
.philosophy-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.philosophy-text p { margin-bottom: 1rem; font-size: 1.05rem; }
.philosophy-text p:last-child { margin-bottom: 0; }

/* ── Split layout ────────────────────────────── */
.split-section { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.split-section.reverse .split-media { order: 2; }
.split-section.reverse .split-body { order: 1; }
.split-media {
  background-size: cover; background-position: center;
  min-height: 480px;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-body {
  padding: clamp(3rem, 5vw, 6rem);
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.split-body p { color: inherit; opacity: 0.85; }
.split-body p + p { margin-top: 0.75rem; }

/* ── Cards ───────────────────────────────────── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.card {
  background: var(--white); border: 1px solid var(--border);
  padding: 2rem; transition: all 0.25s;
  border-top: 4px solid var(--yellow);
}
.card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-3px); }
.card h4 { margin-bottom: 0.75rem; font-size: 1.15rem; }
.card .price-badge {
  display: inline-block; background: var(--yellow); color: var(--dark);
  font-weight: 700; font-size: 1.3rem; padding: 0.3rem 0.8rem; margin-bottom: 1rem;
}

/* ── Parcours cards ──────────────────────────── */
.parcours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.parcours-card {
  border: 1px solid var(--border); padding: 2rem 1.75rem; transition: all 0.25s;
  position: relative; overflow: hidden;
}
.parcours-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--yellow); transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.3s;
}
.parcours-card:hover::before { transform: scaleY(1); }
.parcours-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.parcours-badge {
  display: inline-block; background: var(--yellow); color: var(--dark);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; margin-bottom: 1rem;
}
.parcours-card h3 { font-size: 1.4rem; font-family: var(--font-sans); font-weight: 700; margin-bottom: 0.5rem; }
.parcours-card .age { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.75rem; }
.parcours-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }
.parcours-card .capacity { margin-top: 1rem; font-size: 0.85rem; font-weight: 600; color: var(--text); }

/* ── Testimonials ────────────────────────────── */
.testimonials-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.testimonial-quote {
  font-family: var(--font-serif); font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-style: italic; line-height: 1.75; color: var(--text);
  margin-bottom: 1.5rem;
}
.testimonial-author { font-weight: 700; color: var(--text-muted); letter-spacing: 0.05em; }
.testimonial-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.testimonial-dot {
  width: 8px; height: 8px; border-radius: 50%; border: 2px solid var(--text-muted);
  background: transparent; cursor: pointer; transition: all 0.2s;
}
.testimonial-dot.active { background: var(--text-muted); transform: scale(1.3); }
.carousel-arrows { display: flex; justify-content: center; gap: 1rem; margin-top: 1.5rem; }
.arrow-btn {
  background: none; border: 2px solid var(--border); width: 48px; height: 48px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; color: var(--text);
}
.arrow-btn:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }

/* ── Accordion ───────────────────────────────── */
.accordion { border-top: 1px solid var(--border); }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; font-size: 1rem; font-weight: 600;
  text-align: left; color: inherit; font-family: var(--font-sans);
}
.accordion-icon {
  width: 28px; height: 28px; border: 2px solid currentColor; border-radius: 50%;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s; font-size: 1.3rem; font-weight: 300; line-height: 1;
}
.accordion-btn[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); }
.accordion-content { display: none; padding-bottom: 1.5rem; color: var(--text-muted); line-height: 1.75; }
.accordion-content.open { display: block; }
.accordion-content ul { list-style: none; padding: 0; }
.accordion-content li { padding: 0.2rem 0; }
.accordion-content li::before { content: '→ '; color: var(--yellow); font-weight: 700; }

/* ── Promo banner ────────────────────────────── */
.promo-banner { text-align: center; padding: 6rem var(--gutter); }
.promo-banner h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); margin-bottom: 1.5rem; }
.promo-banner h3 { font-family: var(--font-sans); font-weight: 400; font-size: 1.1rem; margin-bottom: 1rem; opacity: 0.8; }
.promo-highlight { color: var(--dark); background: var(--white); padding: 0.15rem 0.5rem; display: inline; }

/* ── Stats strip ─────────────────────────────── */
.stats-strip {
  background: var(--yellow); padding: 3rem 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; gap: 1rem; }
.stat-num { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; color: var(--dark); }
.stat-label { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(0,0,0,0.6); }

/* ── Footer ──────────────────────────────────── */
footer { background: hsla(208, 80%, 10%, 1); color: rgba(255,255,255,0.65); }
.footer-top { padding: 5rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
footer h5 { color: var(--white); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.25rem; }
footer a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--yellow); }
.footer-nav { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.9rem; }
.footer-logo img { height: 70px; margin-bottom: 1.5rem; }
.footer-address { font-size: 0.9rem; line-height: 2; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-link {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); text-decoration: none; transition: all 0.2s;
}
.social-link:hover { border-color: var(--yellow); color: var(--yellow); background: rgba(232,200,50,0.1); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; gap: 1rem;
}

/* ── Map embed ───────────────────────────────── */
.map-wrapper { width: 100%; height: 360px; filter: grayscale(20%); }
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* ── Page hero (inner pages) ─────────────────── */
.page-hero {
  padding: calc(80px + 5rem) 0 5rem; background: var(--dark); color: var(--white);
  text-align: center;
}
.page-hero h1 { color: var(--yellow); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ── Contact form ────────────────────────────── */
.contact-form { max-width: 680px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 0.875rem 1rem; border: 1px solid var(--border);
  font-family: var(--font-sans); font-size: 0.95rem; color: var(--text);
  background: var(--white); outline: none; transition: border-color 0.2s;
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--yellow); }

/* ── Utilities ───────────────────────────────── */
.text-yellow { color: var(--yellow); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

/* ── Edit mode ───────────────────────────────── */
.edit-mode .editable {
  outline: 2px dashed rgba(232,200,50,0.4); outline-offset: 3px;
  cursor: text; min-height: 1em; transition: background 0.15s;
}
.edit-mode .editable:hover { background: rgba(232,200,50,0.06); outline-color: var(--yellow); }
.edit-mode .editable:focus { background: rgba(232,200,50,0.1); outline: 2px solid var(--yellow); outline-offset: 3px; }

#editor-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: hsla(208, 80%, 10%, 1); border-top: 3px solid var(--yellow);
  padding: 0.75rem 1.5rem; display: none; align-items: center;
  justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
#editor-bar.show { display: flex; }
.editor-bar-left { display: flex; align-items: center; gap: 0.75rem; font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.editor-status { color: var(--yellow); font-weight: 700; }
.editor-bar-right { display: flex; gap: 0.5rem; }
#editor-bar .ebtn {
  padding: 0.45rem 1rem; border: none; cursor: pointer;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.ebtn-save    { background: var(--yellow); color: var(--dark); }
.ebtn-reset   { background: #cc3333; color: #fff; }
.ebtn-export  { background: rgba(255,255,255,0.12); color: #fff; }
.ebtn-off     { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }

/* ── Language switcher ───────────────────────── */
.lang-switcher {
  display: flex; align-items: center; gap: 2px;
  border: 1px solid rgba(255,255,255,0.15); padding: 2px; border-radius: 4px;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.5); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.05em; padding: 4px 7px; border-radius: 3px;
  transition: all 0.18s; font-family: var(--font-sans);
}
.lang-btn:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.lang-btn.active { background: var(--yellow); color: var(--dark); }

/* ── Form group (reservation page) ──────────── */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.875rem 1rem; border: 1px solid var(--border);
  font-family: var(--font-sans); font-size: 0.95rem; color: var(--text);
  background: var(--white); outline: none; transition: border-color 0.2s;
  resize: vertical; border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--yellow); }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .parcours-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .philosophy-grid { grid-template-columns: 1fr 1fr; }
  .philosophy-img:last-child { display: none; }
}

@media (max-width: 768px) {
  :root { --section-pad: 3rem; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .split-section { grid-template-columns: 1fr; }
  .split-section.reverse .split-media { order: 0; }
  .split-section.reverse .split-body  { order: 0; }
  .split-media { min-height: 320px; }
  .parcours-grid { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  /* Inner page grids collapse to 1 col */
  section [style*="grid-template-columns: 1fr 1fr"],
  section [style*="grid-template-columns:1fr 1fr"],
  section [style*="grid-template-columns: 1.1fr 1fr"],
  section [style*="grid-template-columns:1.1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* Reservation sticky sidebar */
  section [style*="position:sticky"],
  section [style*="position: sticky"] { position: static !important; }
}

@media (max-width: 768px) {
  .header-logo img { height: 40px; }
  /* Phone number → compact yellow button */
  .header-phone {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: var(--yellow); color: var(--dark) !important;
    font-size: 0.78rem; font-weight: 800; letter-spacing: 0.04em;
    padding: 0.45rem 0.85rem; border-radius: 100px;
    white-space: nowrap; opacity: 1;
  }
  .header-phone::before { content: '📞'; font-size: 0.85rem; }
  .header-phone:hover { opacity: 0.85; }
  /* Hide long number on small screens, keep icon + short label */
  .header-phone .phone-num { display: none; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .header-inner { padding: 0.65rem 1rem; gap: 0.75rem; }
  .header-logo img { height: 36px; }
  /* On very small screens hide the number text entirely, keep just the icon pill */
  .header-phone { padding: 0.45rem 0.7rem; font-size: 0; }
  .header-phone::before { font-size: 1rem; }
}

/* ── Activity split cards (index.html) ───────────────── */
.activity-split-card { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.activity-split-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.25); }
@media (max-width: 640px) {
  .activity-split-card { min-height: 380px !important; }
  #activites > .container > div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
}

