:root {
  --vert:        #A9C811;
  --vert-deep:   #8AA50C;
  --navy:        #173C6A;
  --navy-deep:   #0F2A4F;
  --turquoise:   #00B6C4;
  --turquoise-deep: #0090A0;
  --bleu:        #008EFE;
  --bleu-deep:   #0070D0;

  --paper:       #FFFFFF;
  --paper-soft:  #F5F8FB;
  --paper-deep:  #E8EFF6;
  --ink:         var(--navy);
  --ink-soft:    #4F6789;
  --rule:        #D7E0EC;

  --font-display: 'Lato', -apple-system, sans-serif;
  --font-body:    'Inter', -apple-system, sans-serif;
  --font-btn:     'Plus Jakarta Sans', -apple-system, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', 'Courier New', monospace;

  --nav-h: 88px;
  --radius: 18px;
  --shadow:    0 10px 32px rgba(23,60,106,.10);
  --shadow-sm: 0 4px 16px rgba(23,60,106,.08);
  --shadow-lg: 0 24px 64px rgba(23,60,106,.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body), sans-serif, sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--bleu); text-decoration: none; transition: color .2s; }
a:hover { color: var(--bleu-deep); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display), sans-serif;
  font-weight: 900;
  letter-spacing: -.015em;
  line-height: 1.05;
  color: var(--navy);
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.4rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); font-weight: 700; }
.lead { font-size: 1.2rem; color: var(--ink-soft); line-height: 1.55; max-width: 60ch; }
.text-muted { color: var(--ink-soft) !important; }

.eyebrow {
  font-family: var(--font-body), sans-serif, sans-serif;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1.1rem;
  color: var(--vert-deep);
}
.eyebrow::before {
  content: "";
  width: 32px; height: 3px;
  background: currentColor;
  border-radius: 3px;
}
.eyebrow.is-turquoise { color: var(--turquoise-deep); }
.eyebrow.is-bleu      { color: var(--bleu-deep); }
.eyebrow.is-light { color: rgba(255,255,255,.95); }

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--rule);
  z-index: 1030;
  transition: background .2s, padding .2s;
  padding: 1.2rem 0 .9rem;
}
.navbar .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 1.5rem;
  max-width: 1320px;
}
.brand-row {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  animation: fadeDown .7s cubic-bezier(.2,.9,.3,1) both;
}
.menu-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .3rem;
  flex-wrap: wrap;
  animation: fadeDown .7s cubic-bezier(.2,.9,.3,1) .15s both;
}
@keyframes fadeDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }
.brand {
  display: inline-flex; align-items: center;
  text-decoration: none;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.brand:hover { transform: scale(1.04); }
.brand img {
  height: 56px;
  width: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(23,60,106,.18);
}
.menu-row a {
  font-family: var(--font-body), sans-serif, sans-serif;
  font-weight: 500;
  font-size: .95rem;
  color: var(--navy);
  padding: .55rem 1.1rem;
  border-radius: 999px;
  transition: background .2s, color .2s;
}
.menu-row a:hover { background: var(--paper-soft); color: var(--bleu); }
.menu-row a.active { color: var(--bleu); background: var(--paper-soft); }

.btn-cta {
  background: var(--vert) !important;
  color: var(--navy) !important;
  font-family: var(--font-btn), sans-serif !important;
  font-weight: 600 !important;
  font-size: .82rem;
  letter-spacing: -.005em;
  line-height: 1.15;
  text-align: left;
  padding: .65rem 1.25rem !important;
  border-radius: 16px;
  margin-left: .5rem;
  box-shadow: 0 6px 18px rgba(169,200,17,.45), 0 0 0 0 rgba(169,200,17,.6);
  transition: transform .2s, box-shadow .2s, background .2s;
  position: relative;
  animation: ctaPulse 2.6s ease-in-out infinite;
  display: inline-flex; align-items: center; gap: .6rem;
  max-width: 230px;
}
.btn-cta .cta-text { display: flex; flex-direction: column; }
.btn-cta .cta-text strong { font-weight: 800; font-size: .95rem; letter-spacing: -.01em; }
.btn-cta .arrow { font-size: 1.3rem; line-height: 1; display: inline-flex; transition: transform .25s; }
.btn-cta:hover .arrow { transform: translateX(3px); }
.btn-cta::before { display: none; }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 6px 18px rgba(169,200,17,.45), 0 0 0 0 rgba(169,200,17,.6); }
  50%      { box-shadow: 0 6px 18px rgba(169,200,17,.55), 0 0 0 10px rgba(169,200,17,0); }
}
.btn-cta:hover {
  background: var(--vert-deep) !important;
  color: #fff !important;
  animation-play-state: paused;
  box-shadow: 0 12px 28px rgba(169,200,17,.55);
}

.burger {
  display: none;
  position: absolute; right: 1.5rem; top: 50%;
  transform: translateY(-50%);
  background: transparent; border: 2px solid var(--navy); color: var(--navy);
  padding: .4rem .8rem; border-radius: 10px; cursor: pointer;
  font-size: 1.1rem;
}
@media (max-width: 1100px) {
  :root { --nav-h: 76px; }
  .navbar { padding: .9rem 0; }
  .menu-row { display: none; }
  .burger { display: block; }
  .brand-row { justify-content: flex-start; }
  .brand img { height: 46px; }
}
.drawer {
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--rule);
  transform: translateY(-110%);
  transition: transform .35s cubic-bezier(.5,1.4,.5,1);
  z-index: 1029;
  padding: 1rem 1.5rem 1.5rem;
  display: flex; flex-direction: column;
}
.drawer.open { transform: none; }
.drawer a {
  padding: .9rem .25rem;
  border-bottom: 1px solid var(--rule);
  color: var(--navy);
  font-weight: 500;
}

/* ---- Buttons ---- */
.btn-pill {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  font-family: var(--font-btn), sans-serif;
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: -.005em;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-pill.is-primary { background: var(--bleu); color: #fff; box-shadow: 0 8px 22px rgba(0,142,254,.32); }
.btn-pill.is-primary:hover { background: var(--bleu-deep); color: #fff; box-shadow: 0 14px 30px rgba(0,142,254,.42); }
.btn-pill.is-vert { background: var(--vert); color: var(--navy); box-shadow: 0 8px 22px rgba(169,200,17,.32); }
.btn-pill.is-vert:hover { background: var(--vert-deep); color: #fff; box-shadow: 0 14px 30px rgba(169,200,17,.42); }
.btn-pill.is-turquoise { background: var(--turquoise); color: #fff; box-shadow: 0 8px 22px rgba(0,182,196,.32); }
.btn-pill.is-turquoise:hover { background: var(--turquoise-deep); color: #fff; box-shadow: 0 14px 30px rgba(0,182,196,.42); }
.btn-pill.is-ghost { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-pill.is-ghost:hover { background: var(--navy); color: #fff; }
.btn-pill.is-light { background: #fff; color: var(--navy); }
.btn-pill.is-light:hover { background: var(--vert); color: var(--navy); box-shadow: 0 14px 30px rgba(169,200,17,.35); }
.btn-pill .arrow { transition: transform .25s; display: inline-block; }
.btn-pill:hover .arrow { transform: translateX(4px); }

/* ---- Hero ---- */
.hero {
  position: relative;
  margin-top: var(--nav-h);
  min-height: min(820px, 88vh);
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 80% 20%, rgba(0,182,196,.18) 0%, transparent 50%);
}
.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 6rem 1.5rem 8rem;
  width: 100%;
  position: relative; z-index: 2;
}
.hero h1 {
  color: #fff;
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 6.2rem);
  max-width: 18ch;
  margin-bottom: 1.5rem;
  text-shadow: 0 6px 32px rgba(0,0,0,.25);
  line-height: 1;
}
.hero h1 .hl { display: inline-block; position: relative; color: var(--vert); }
.hero h1 .hl::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4%;
  height: 18%;
  background: var(--vert);
  opacity: .25;
  border-radius: 4px;
  z-index: -1;
}
.hero-sub {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: rgba(255,255,255,.95);
  max-width: 56ch;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-cta .meta { display: inline-flex; align-items: center; gap: .6rem; margin-left: .75rem; color: rgba(255,255,255,.85); font-size: .92rem; }
.hero-cta .meta strong { color: #fff; }

.hero-pills {
  position: absolute;
  top: 8%; right: 5%;
  display: flex; flex-direction: column; gap: .65rem;
  align-items: flex-end;
  z-index: 3;
  animation: chipsIn 1s cubic-bezier(.4,1.4,.4,1) .3s both;
}
@keyframes chipsIn { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: none; } }
.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(0,0,0,.30);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: .82rem; font-weight: 500;
  padding: .55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
}
.chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--vert); animation: pulse 2s infinite; }
.chip:nth-child(2) .dot { background: var(--turquoise); animation-delay: .5s; }
.chip:nth-child(3) .dot { background: var(--bleu); animation-delay: 1s; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.4); } }
@media (max-width: 768px) { .hero-pills { display: none; } }

.hero-cut { position: absolute; bottom: -1px; left: 0; right: 0; height: 100px; z-index: 2; }
.hero-cut svg { width: 100%; height: 100%; display: block; }

/* ---- Stats strip ---- */
.stats-strip {
  background: var(--navy);
  color: #fff;
  padding: 2.5rem 0;
  position: relative;
  margin-top: -1px;
}
.stats-strip .container { max-width: 1320px; margin: 0 auto; padding: 0 1.5rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
.stat { text-align: center; position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 15%; bottom: 15%;
  width: 1px; background: rgba(255,255,255,.12);
}
@media (max-width: 768px) { .stat + .stat::before { display: none; } }
.stat-num {
  font-family: var(--font-display), sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  line-height: 1;
  color: var(--vert);
  margin-bottom: .25rem;
  letter-spacing: -.04em;
}
.stat-num.is-turquoise { color: var(--turquoise); }
.stat-num.is-bleu      { color: #57B5FF; }
.stat-lbl { font-size: .85rem; text-transform: uppercase; letter-spacing: .15em; opacity: .8; }

/* ---- Section ---- */
.section {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) { .section { padding: 4.5rem 0; } }
.section .container { max-width: 1320px; margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 2; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-head .eyebrow { justify-content: center; }

/* ---- Activity blocks ---- */
.activity-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: 8rem;
  position: relative;
  transition: transform .4s;
}
.activity-block:last-child { margin-bottom: 0; }
.activity-block.reverse { direction: rtl; }
.activity-block.reverse > * { direction: ltr; }
@media (max-width: 900px) {
  .activity-block { grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 5rem; }
  .activity-block.reverse { direction: ltr; }
}
.activity-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow-lg);
  transition: transform .5s cubic-bezier(.34,1.56,.64,1);
}
.activity-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,1,.3,1); }
.activity-block:hover .activity-visual img { transform: scale(1.05); }
.activity-block:hover .activity-visual { transform: rotate(-.6deg); }
.activity-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(23,60,106,.3) 0%, transparent 60%);
  opacity: 0; transition: opacity .6s; pointer-events: none;
}
.activity-block:hover .activity-visual::after { opacity: 1; }

.sticker {
  position: absolute;
  font-family: var(--font-display), sans-serif; font-weight: 700;
  background: #fff; color: var(--navy);
  padding: 1rem 1.4rem;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(23,60,106,.18);
  font-size: .95rem;
  display: inline-flex; align-items: center; gap: .65rem;
  z-index: 2;
}
.sticker .icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; color: #fff;
}
.sticker.is-vert .icon { background: var(--vert); color: var(--navy); }
.sticker.is-turquoise .icon { background: var(--turquoise); }
.sticker.is-bleu .icon { background: var(--bleu); }
.sticker.tl { top: -22px; left: -22px; }
.sticker.br { bottom: -22px; right: -22px; }
.sticker.tr { top: 24px; right: -22px; transform: rotate(3deg); }
.sticker.bl { bottom: 24px; left: -22px; transform: rotate(-3deg); }
@media (max-width: 600px) {
  .sticker { font-size: .82rem; padding: .7rem 1rem; }
  .sticker.tl { left: -10px; top: -16px; }
  .sticker.br { right: -10px; bottom: -16px; }
}

.activity-content .eyebrow { color: var(--vert-deep); }
.activity-block[data-theme="turquoise"] .activity-content .eyebrow { color: var(--turquoise-deep); }
.activity-block[data-theme="bleu"]      .activity-content .eyebrow { color: var(--bleu-deep); }
.activity-block[data-theme="navy"]      .activity-content .eyebrow { color: var(--navy-deep); }
.activity-block[data-theme="orange"]    .activity-content .eyebrow { color: #C2410C; }
.activity-content h2 { margin-bottom: 1.2rem; }
.activity-content h2 .accent { color: var(--vert-deep); }
.activity-block[data-theme="turquoise"] .activity-content h2 .accent { color: var(--turquoise-deep); }
.activity-block[data-theme="bleu"]      .activity-content h2 .accent { color: var(--bleu); }
.activity-block[data-theme="navy"]      .activity-content h2 .accent { color: var(--navy); }
.activity-block[data-theme="orange"]    .activity-content h2 .accent { color: #F97316; }

.activity-list {
  list-style: none; padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .5rem 1.2rem;
}
@media (max-width: 600px) { .activity-list { grid-template-columns: 1fr; } }
.activity-list li {
  position: relative; padding-left: 1.5rem;
  color: var(--ink); font-weight: 500; font-size: .88rem; line-height: 1.45;
}
.activity-list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 10px; height: 10px; border-radius: 3px;
  background: var(--vert); transform: rotate(45deg);
}
.activity-block[data-theme="turquoise"] .activity-list li::before { background: var(--turquoise); }
.activity-block[data-theme="bleu"]      .activity-list li::before { background: var(--bleu); }
.activity-block[data-theme="navy"]      .activity-list li::before { background: var(--navy); }
.activity-block[data-theme="orange"]    .activity-list li::before { background: #F97316; }

.activity-num {
  font-family: var(--font-display), sans-serif; font-weight: 800;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 1; color: var(--vert);
  opacity: .14; position: absolute;
  letter-spacing: -.05em;
  animation: floatNum 6s ease-in-out infinite;
  transition: opacity .5s, transform .5s;
}
.activity-block[data-theme="turquoise"] .activity-num { color: var(--turquoise); }
.activity-block[data-theme="bleu"]      .activity-num { color: var(--bleu); }
.activity-block[data-theme="navy"]      .activity-num { color: var(--navy); }
.activity-block[data-theme="orange"]    .activity-num { color: #F97316; }
@keyframes floatNum {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(-2deg); }
}
.activity-block:hover .activity-num { opacity: .28; transform: scale(1.1) rotate(-3deg); }

/* ---- Trio ---- */
.trio { background: var(--paper-soft); padding: 6rem 0; }
.trio .container { max-width: 1320px; margin: 0 auto; padding: 0 1.5rem; }
.trio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 880px; margin: 0 auto; }
@media (max-width: 900px) { .trio-grid { grid-template-columns: 1fr; } }
.trio-card {
  background: #fff; border-radius: 22px; padding: 2.2rem;
  box-shadow: var(--shadow); transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
  border-top: 6px solid var(--vert);
}
.trio-card:nth-child(2) { border-top-color: var(--turquoise); }
.trio-card:nth-child(3) { border-top-color: var(--bleu); }
.trio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.trio-card h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.trio-card p { color: var(--ink-soft); margin-bottom: 1.5rem; }
.trio-card a {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-btn), sans-serif; font-weight: 600; font-size: .92rem;
  letter-spacing: -.005em; padding: .75rem 1.4rem;
  border-radius: 999px; background: var(--navy); color: #fff !important;
  text-decoration: none; transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 6px 18px rgba(23,60,106,.22);
}
.trio-card:nth-child(1) a { background: var(--vert); color: var(--navy) !important; box-shadow: 0 6px 18px rgba(169,200,17,.32); }
.trio-card:nth-child(1) a:hover { background: var(--vert-deep); color: #fff !important; transform: translateY(-2px); box-shadow: 0 12px 24px rgba(169,200,17,.45); }
.trio-card:nth-child(2) a { background: var(--turquoise); color: #fff !important; box-shadow: 0 6px 18px rgba(0,182,196,.32); }
.trio-card:nth-child(2) a:hover { background: var(--turquoise-deep); color: #fff !important; transform: translateY(-2px); }
.trio-card:nth-child(3) a { background: var(--bleu); color: #fff !important; box-shadow: 0 6px 18px rgba(0,142,254,.32); }
.trio-card:nth-child(3) a:hover { background: var(--bleu-deep); color: #fff !important; transform: translateY(-2px); }
.trio-card a .arrow { transition: transform .25s; display: inline-block; }
.trio-card a:hover .arrow { transform: translateX(4px); }

/* ---- CTA banner ---- */
.cta-banner {
  position: relative; padding: 7rem 0;
  background-size: cover; background-position: center;
  background-attachment: fixed;
  color: #fff; text-align: center; overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(90px);
  opacity: .25; pointer-events: none;
}
.cta-banner::before { width: 380px; height: 380px; background: var(--vert); top: -140px; left: -100px; }
.cta-banner::after  { width: 440px; height: 440px; background: var(--turquoise); bottom: -180px; right: -120px; }
.cta-banner .container { position: relative; z-index: 2; max-width: 800px; padding: 0 1.5rem; }
.cta-banner .eyebrow { color: var(--vert); justify-content: center; }
.cta-banner h2 { color: #fff; font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 1.2rem; text-shadow: 0 4px 24px rgba(0,0,0,.3); }
.cta-banner p { font-size: 1.2rem; opacity: .95; margin-bottom: 2.2rem; max-width: 52ch; margin-left: auto; margin-right: auto; }
@media (max-width: 768px) { .cta-banner { background-attachment: scroll; } }

/* ---- Footer ---- */
footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.78);
  padding: 5rem 0 2rem;
}
footer .container { max-width: 1320px; margin: 0 auto; padding: 0 1.5rem; }
footer h5 { color: var(--vert); font-size: 1rem; margin-bottom: 1.2rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.footer-logo-wrap { display: inline-block; margin-bottom: 1.5rem; transition: transform .35s cubic-bezier(.34,1.56,.64,1); }
.footer-logo-wrap:hover { transform: scale(1.04); }
.footer-logo { display: block; height: 56px; width: auto; border-radius: 10px; box-shadow: 0 6px 18px rgba(23,60,106,.18); }
footer a { color: rgba(255,255,255,.75); display: block; padding: .25rem 0; transition: color .2s, transform .2s; }
footer a:hover { color: var(--vert); transform: translateX(3px); }
.footer-bottom {
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .85rem; opacity: .6; text-align: center;
}

/* ---- Page hero (inner pages) ---- */
.page-hero {
  margin-top: var(--nav-h);
  min-height: 360px;
  background-size: cover; background-position: center;
  position: relative; display: flex; align-items: center; color: #fff;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,60,106,.35) 0%, rgba(23,60,106,.65) 100%);
}
.page-hero .container { position: relative; z-index: 2; max-width: 1320px; padding: 4rem 1.5rem; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 4rem); }
.page-hero h2 { color: #fff; }
.page-hero .eyebrow { color: var(--vert); }

/* ---- Table ---- */
.table-wrap {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; margin: 1rem 0 2rem;
}
table.t { width: 100%; border-collapse: collapse; }
table.t th {
  background: var(--paper-soft); text-align: left;
  font-family: var(--font-body), sans-serif, sans-serif; font-weight: 700; font-size: .78rem;
  text-transform: uppercase; letter-spacing: .12em; color: var(--navy);
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--rule);
}
table.t td { padding: 1.1rem 1.25rem; border-bottom: 1px solid var(--rule); font-size: .95rem; }
table.t tbody tr:last-child td { border-bottom: none; }
table.t tbody tr:hover td { background: var(--paper-soft); }
.price { font-weight: 700; color: var(--bleu); }
.badge {
  display: inline-block;
  background: rgba(169,200,17,.16); color: var(--vert-deep);
  font-weight: 700; font-size: .88rem;
  padding: .25rem .75rem; border-radius: 999px;
}
.stage-card .tarif { font-size: 1rem; font-weight: 900; color: var(--ink); margin-top:.5rem; }

/* ---- Reveal ---- */
.reveal, .reveal-l, .reveal-r, .reveal-scale {
  opacity: 0;
  transition: opacity .9s ease, transform 1s cubic-bezier(.2,.9,.3,1);
  will-change: opacity, transform;
}
.reveal       { transform: translateY(40px); }
.reveal-l     { transform: translateX(-70px); }
.reveal-r     { transform: translateX(70px); }
.reveal-scale { transform: scale(.85); }
.reveal.in, .reveal-l.in, .reveal-r.in, .reveal-scale.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .18s; }
.reveal.d3 { transition-delay: .28s; }
@media (max-width: 768px) { .reveal-l, .reveal-r { transform: translateY(30px); } }

/* ---- Flash messages ---- */
.alert-flash {
  position: fixed;
  top: calc(var(--nav-h) + 10px);
  left: 50%; transform: translateX(-50%);
  z-index: 1100;
  min-width: 320px;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-weight: 500;
}
.alert-success { background: var(--vert); color: var(--navy); }
.alert-danger  { background: #FF4C4C; color: #fff; }

/* ---- Rental cards ---- */
.rental-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.rental-card { flex: 0 0 calc(33.333% - 1rem); min-width: 260px; background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; }
@media (max-width: 900px) { .rental-card { flex: 0 0 calc(50% - 0.75rem); } }
@media (max-width: 600px) { .rental-card { flex: 0 0 100%; } }
.rental-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.rental-card img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform .5s cubic-bezier(.2,1,.3,1); }
.rental-card:hover img { transform: scale(1.05); }
.rental-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.rental-card h3 { font-size: 1.2rem; margin-bottom: 1rem; color: var(--navy); }
.rental-prices { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; flex: 1; }
.rental-prices li { display: flex; justify-content: space-between; align-items: center; padding: .45rem 0; border-bottom: 1px solid var(--rule); font-size: .92rem; color: var(--ink-soft); }
.rental-prices li:last-child { border-bottom: none; }
.rental-prices .p { font-weight: 700; color: var(--navy); white-space: nowrap; }

/* ---- Tag list ---- */
.tag-list { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0 0; }
.tag-list .tag { background: var(--paper-deep); color: var(--navy); border-radius: 999px; padding: .35rem 1rem; font-size: .88rem; font-weight: 500; }

/* ---- Check list ---- */
.check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .75rem; }
.check-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: 1rem; color: var(--ink); }
.check-list li::before { content: '✓'; font-weight: 700; color: var(--vert-deep); flex-shrink: 0; margin-top: .1em; font-size: 1.05rem; }

/* ---- Stage cards ---- */
.stage-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
@media (max-width: 700px) { .stage-grid { grid-template-columns: 1fr; } }
.stage-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column; gap: 1rem;
}
.stage-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.stage-card-meta { display: flex; gap: .5rem; flex-wrap: wrap; }
.stage-card h3 { font-size: 1.25rem; color: var(--navy); margin: 0; }
.stage-card p { color: var(--ink-soft); margin: 0; font-size: .95rem; line-height: 1.6; }
.stage-card .programme { font-size: .88rem; color: var(--ink-soft); border-top: 1px solid var(--rule); padding-top: .75rem; margin-top: auto; }
.stage-card .programme strong { color: var(--navy); display: block; margin-bottom: .3rem; }

/* ---- Info split (2 cols text) ---- */
.info-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 768px) { .info-split { grid-template-columns: 1fr; gap: 2rem; } }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
details.faq-item { background: var(--faq-bg, var(--paper-soft)); border-radius: var(--radius); overflow: hidden; }
details.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600; font-size: 1rem; color: var(--navy);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  transition: background .2s, color .2s;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: '+'; font-size: 1.25rem; color: var(--bleu); flex-shrink: 0; line-height: 1; transition: color .2s; }
details.faq-item[open] summary { background: var(--vert); color: #fff; border-radius: var(--radius) var(--radius) 0 0; }
details.faq-item[open] summary::after { color: #fff; }
details.faq-item .faq-body { padding: 1rem 1.5rem 1.25rem; color: var(--ink-soft); font-size: .96rem; line-height: 1.65; }

/* ---- Agrement badges ---- */
.agrement-list { display: flex; gap: .75rem; flex-wrap: wrap; }
.agrement-badge { background: var(--paper-soft); border: 1px solid var(--rule); border-radius: 999px; padding: .45rem 1.1rem; font-size: .85rem; font-weight: 600; color: var(--navy); }


.logo {
    height: 110px;
    width: 110px;
}

.logo-footer {
    height: 150px;
    width: 150px;
}


/* ============================================================
   COMPOSANTS LANDING PAGES PARTAGÉS
   (stages-ete-2026, activites/landing, piscine/landing)
   ============================================================ */

/* ---- Topbar ---- */
.lp-topbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: .75rem 2rem;
    background: rgba(15,42,79,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.lp-topbar img { height: 80px; width: auto; }

/* ---- Hero ---- */
.lp-hero {
    min-height: 100vh;
    background-size: cover; background-position: center;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center;
    padding: 7rem 1.5rem 5rem;
    position: relative;
    overflow: hidden;
}
.lp-hero-bg-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.lp-hero::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,30,60,.55) 0%, rgba(10,30,60,.65) 100%);
    z-index: 1;
}
.lp-hero > * { position: relative; z-index: 2; }
.lp-hero .lp-hero-bg-video { position: absolute; inset: 0; z-index: 0; }
.lp-hero h1 {
    font-family: var(--font-display), sans-serif; font-size: clamp(2.2rem, 5.5vw, 4.5rem);
    color: #fff; font-weight: 800; line-height: 1.1;
    text-shadow: 0 2px 24px rgba(0,0,0,.3);
    max-width: 18ch; margin: .5rem auto 1.25rem;
}
.lp-hero-sub {
    color: rgba(255,255,255,.88); font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 52ch; margin: 0 auto 2rem; line-height: 1.65;
}
.lp-hero-pills {
    display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2.5rem;
}
.lp-pill {
    display: inline-flex; align-items: center; gap: .4rem;
    background: rgba(255,255,255,.13); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.22);
    color: #fff; font-size: .85rem; font-weight: 600;
    padding: .4rem .95rem; border-radius: 999px;
}
.lp-pill strong { color: white; }

/* ---- Réassurance ---- */
.lp-reassurance {
    background: var(--navy-deep);
    padding: 3.5rem 1.5rem;
}
.lp-reassurance-grid {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 2rem; max-width: 1100px; margin: 0 auto;
    text-align: center;
}
.lp-reassurance-item { display: flex; flex-direction: column; align-items: center; gap: .75rem; }
.lp-reassurance-icon {
    width: 60px; height: 60px; border-radius: 50%;
    background: rgba(169,200,17,.18);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; flex-shrink: 0;
}
.lp-reassurance-item h3 { color: #fff; font-size: .95rem; margin: 0; font-weight: 700; line-height: 1.3; }
.lp-reassurance-item p { color: rgba(255,255,255,.6); font-size: .82rem; margin: 0; line-height: 1.55; }

/* ---- Photo band ---- */
.lp-photo-band {
    height: 420px;
    background-size: cover; background-position: center;
    background-attachment: fixed;
    position: relative;
}
.lp-photo-band::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(15,42,79,.7) 0%, rgba(0,0,0,.25) 100%);
}
.lp-photo-band-content {
    position: relative; z-index: 1;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    height: 100%; text-align: center; padding: 2rem;
}
.lp-photo-band-content h3 {
    color: #fff; font-family: var(--font-display), sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800;
    line-height: 1.15; text-shadow: 0 2px 20px rgba(0,0,0,.35);
    margin-bottom: .75rem;
}
.lp-photo-band-content p {
    color: rgba(255,255,255,.82); font-size: 1.05rem; max-width: 50ch; line-height: 1.65;
}

/* ---- CTA Final ---- */
.lp-cta-final {
    background: var(--navy-deep); padding: 6rem 1.5rem;
    text-align: center; position: relative; overflow: hidden;
}
.lp-cta-final::before {
    content: ''; position: absolute;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(169,200,17,.1) 0%, transparent 70%);
    top: -100px; left: -100px; pointer-events: none;
}
.lp-cta-final::after {
    content: ''; position: absolute;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,142,254,.08) 0%, transparent 70%);
    bottom: -80px; right: -80px; pointer-events: none;
}
.lp-cta-final > * { position: relative; z-index: 1; }
.lp-cta-final h2 {
    font-family: var(--font-display), sans-serif; color: #fff;
    font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; font-weight: 800;
}
.lp-cta-final h2 .hl { color: var(--vert); }
.lp-cta-final p { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 2.5rem; line-height: 1.7; }

/* ---- Formulaire de contact (landing) ---- */
.lp-form {
    max-width: 680px; margin: 3rem auto 0;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius); padding: 2rem; text-align: left;
}
.lp-form h3 { color: rgba(255,255,255,.9); font-size: 1rem; margin-bottom: 1.5rem; text-align: center; font-weight: 700; }
.lp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.lp-form-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: .9rem; }
.lp-form-group label { color: rgba(255,255,255,.6); font-size: .82rem; font-weight: 600; }
.lp-form-group input,
.lp-form-group select,
.lp-form-group textarea {
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
    border-radius: 8px; padding: .7rem 1rem; color: #fff; font-size: .92rem;
    font-family: var(--font-body), sans-serif, sans-serif; transition: border-color .2s, background .2s;
}
.lp-form-group input::placeholder,
.lp-form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.lp-form-group input:focus,
.lp-form-group select:focus,
.lp-form-group textarea:focus {
    outline: none; border-color: var(--vert);
    background: rgba(255,255,255,.11);
}
.lp-form-group select option { background: #173C6A; color: #fff; }
.lp-form-group textarea { resize: vertical; min-height: 90px; }

/* ---- Responsive partagé ---- */
@media (max-width: 960px) {
    .lp-reassurance-grid { grid-template-columns: repeat(3, 1fr); }
    .lp-photo-band { background-attachment: scroll; }
}
@media (max-width: 620px) {
    .lp-topbar { padding: .6rem 1rem; }
    .lp-topbar img { height: 64px; }
    .lp-reassurance-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
    .lp-form-row { grid-template-columns: 1fr; }
    .lp-photo-band { height: 300px; }
}


/* ============================================================
   PAGE : Stages d'été 2026 (landing — stages-ete-2026.html.twig)
   ============================================================ */

/* Hero override */
.lp-stages-hero::before {
    background: linear-gradient(160deg, rgba(15,42,79,.85) 0%, rgba(15,42,79,.6) 60%, rgba(0,142,254,.2) 100%);
}
.lp-stages-hero h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
.lp-stages-hero h1 .hl { color: var(--vert); }
.lp-hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.lp-hero-reassurance {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: .5rem 1rem; margin-bottom: 2.5rem;
    color: rgba(255,255,255,.82); font-size: .95rem; font-weight: 600;
}
.lp-hero-reassurance .lp-check {
    display: inline-flex; align-items: center; gap: .4rem;
}
.lp-hero-reassurance .lp-check::before {
    content: '✓';
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--vert); color: #fff;
    font-size: .72rem; font-weight: 900; flex-shrink: 0;
}
.lp-hero-reassurance .lp-dot { color: rgba(255,255,255,.3); }
.lp-hero-btn {
    font-size: 1.05rem !important;
    padding: 1rem 2.5rem !important;
    box-shadow: 0 8px 28px rgba(169,200,17,.45) !important;
}

/* Réassurance override (5 colonnes avec padding supplémentaire) */
.lp-stages-reassurance { padding: 4rem 1.5rem; }

/* Topbar CTA */
.lp-topbar-cta { padding: .6rem 1.4rem !important; font-size: .9rem !important; }

/* Badge color variants */
.badge.is-turquoise { background: rgba(0,182,196,.15); color: var(--turquoise-deep); }
.badge.is-bleu { background: rgba(0,142,254,.15); color: var(--bleu-deep); }
.badge.is-navy { background: rgba(23,60,106,.15); color: var(--navy); }

/* Stage card CTA */
.stage-card-cta { margin-top: auto; padding-top: .5rem; }
.stage-card-cta a {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    width: 100%;
    background: var(--vert); color: #fff;
    font-size: .88rem; font-weight: 700;
    text-decoration: none;
    padding: .65rem 1.25rem;
    border-radius: 999px;
    transition: background .2s, transform .15s;
}
.stage-card-cta a:hover {
    background: var(--vert-deep);
    transform: translateY(-1px);
}

/* Stage card image */
.stage-card.has-img { overflow: hidden; padding: 0; gap: 0; }
.stage-card-img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius) var(--radius) 0 0;
    flex-shrink: 0;
}
.stage-card-body {
    padding: 1.5rem;
    display: flex; flex-direction: column; gap: 1rem;
    flex: 1;
}

/* Comparatif */
.lp-compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); box-shadow: var(--shadow); }
.lp-compare-table {
    width: 100%; min-width: 860px;
    border-collapse: collapse; font-size: .88rem;
}
.lp-compare-table th {
    background: var(--navy); color: #fff;
    padding: 1rem .75rem; text-align: center; font-size: .82rem;
    border-bottom: 3px solid var(--vert);
}
.lp-compare-table th:first-child { text-align: left; background: var(--navy-deep); width: 140px; }
.lp-compare-table td {
    padding: .85rem .75rem; text-align: center;
    border-bottom: 1px solid var(--rule); color: var(--ink-soft);
}
.lp-compare-table td:first-child {
    text-align: left; font-weight: 700; color: var(--navy);
    background: var(--paper-soft);
}
.lp-compare-table tr:hover td { background: rgba(169,200,17,.06); }
.lp-compare-table tr:hover td:first-child { background: rgba(169,200,17,.12); }
.lp-compare-table td.check-cell { color: #5a8a00; font-weight: 800; font-size: 1.1rem; }
.tarif-cell { font-weight: 700; color: var(--navy); }

/* Timeline journée type */
.lp-timeline { max-width: 760px; margin: 0 auto; position: relative; }
.lp-timeline::before {
    content: ''; position: absolute; left: 74px; top: 8px; bottom: 8px; width: 2px;
    background: linear-gradient(to bottom, var(--vert), var(--turquoise), var(--bleu));
}
.lp-tl-item {
    display: grid; grid-template-columns: 74px 1fr;
    gap: 1.5rem; margin-bottom: 2rem; position: relative;
}
.lp-tl-time {
    text-align: right; padding-right: 1.25rem; padding-top: .2rem;
    font-weight: 800; font-size: .95rem; color: var(--navy); line-height: 1.2;
}
.lp-tl-time span { display: block; font-size: .68rem; font-weight: 500; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .05em; margin-top: .15rem; }
.lp-tl-dot {
    position: absolute; left: 66px; top: .35rem;
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--vert); border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--vert);
}
.lp-tl-content {
    background: var(--paper-soft); border-radius: var(--radius);
    padding: 1.1rem 1.4rem;
}
.lp-tl-content h4 { color: var(--navy); font-size: 1rem; margin: 0 0 .65rem; font-weight: 700; }
.lp-tl-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.lp-tl-tag {
    display: inline-flex; align-items: center; gap: .35rem;
    font-size: .8rem; padding: .3rem .75rem; border-radius: 999px; font-weight: 600;
}
.lp-tl-tag.parent { background: rgba(23,60,106,.1); color: var(--navy); }
.lp-tl-tag.enfant { background: rgba(169,200,17,.15); color: var(--vert-deep); }

/* Hébergement grille */
.lp-hebergement-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: .75rem;
    max-width: 960px; margin: 0 auto 2.5rem; border-radius: var(--radius); overflow: hidden;
}
.lp-heberg-photo { height: 220px; overflow: hidden; background: var(--paper); }
.lp-heberg-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.lp-heberg-photo:hover img { transform: scale(1.04); }
.lp-heberg-list {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
    max-width: 900px; margin: 0 auto;
}
.lp-heberg-item {
    display: flex; align-items: center; gap: 1.5rem;
    background: var(--paper); border: 1px solid var(--rule);
    border-radius: var(--radius); padding: 1.5rem 1.75rem;
    box-shadow: var(--shadow);
    transition: transform .2s, box-shadow .2s;
}
.lp-heberg-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.lp-heberg-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--paper-soft); border: 1px solid var(--rule);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; flex-shrink: 0;
}
.lp-heberg-item:nth-child(1) .lp-heberg-icon { background: rgba(169,200,17,.12); border-color: rgba(169,200,17,.25); }
.lp-heberg-item:nth-child(2) .lp-heberg-icon { background: rgba(0,182,196,.1); border-color: rgba(0,182,196,.25); }
.lp-heberg-item:nth-child(3) .lp-heberg-icon { background: rgba(0,142,254,.1); border-color: rgba(0,142,254,.25); }
.lp-heberg-item:nth-child(4) .lp-heberg-icon { background: rgba(23,60,106,.08); border-color: rgba(23,60,106,.18); }
.lp-heberg-item strong { display: block; color: var(--navy); font-size: 1rem; font-weight: 700; margin-bottom: .3rem; }
.lp-heberg-item p { color: var(--ink-soft); font-size: .88rem; margin: 0; line-height: 1.6; }

/* Témoignages */
.lp-rating-badge {
    display: flex; align-items: center; justify-content: center; gap: .5rem;
    background: rgba(169,200,17,.12); border: 1px solid rgba(169,200,17,.3);
    color: var(--vert-deep); font-size: .9rem; font-weight: 700;
    padding: .55rem 1.25rem; border-radius: 999px;
    width: fit-content; margin: 0 auto 2.5rem;
}
.lp-testimonials {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.lp-testimonial {
    background: var(--paper-soft); border: 1px solid var(--rule);
    border-radius: var(--radius); padding: 1.75rem 1.5rem;
    display: flex; flex-direction: column; gap: 1rem;
}
.lp-testi-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    overflow: hidden; background: var(--paper); flex-shrink: 0;
    border: 3px solid var(--vert); box-shadow: 0 2px 8px rgba(169,200,17,.25);
}
.lp-testi-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lp-testimonial blockquote {
    color: var(--ink); font-size: .92rem; line-height: 1.7;
    margin: 0; font-style: italic;
}
.lp-testimonial cite {
    color: var(--ink-soft); font-size: .8rem; font-style: normal;
    font-weight: 600; display: block; margin-top: auto;
}

/* Galerie photos */
.lp-gallery-strip {
    padding: 1.5rem;
    background: #fff;
    overflow: hidden;
}
.lp-gallery {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: .6rem;
    max-width: 1320px;
    margin: 0 auto;
}
.lp-gallery-main {
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--paper-soft);
}
.lp-gallery-side {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.lp-gallery-item {
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--paper-soft);
}
.lp-gallery-main img,
.lp-gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .45s ease;
}
.lp-gallery-main:hover img,
.lp-gallery-item:hover img { transform: scale(1.04); }

/* Badges populaire / coup de cœur */
.stage-card-popular,
.stage-card-coup-coeur { position: relative; }
.stage-card-popular::before,
.stage-card-coup-coeur::before {
    position: absolute; top: .85rem; right: .85rem; z-index: 2;
    font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
    padding: .25rem .65rem; border-radius: 999px;
}
.stage-card-popular::before {
    content: '★ Populaire';
    background: var(--vert); color: #fff;
    box-shadow: 0 2px 8px rgba(169,200,17,.4);
}
.stage-card-coup-coeur::before {
    content: '♥ Coup de cœur';
    background: var(--bleu); color: #fff;
    box-shadow: 0 2px 8px rgba(0,142,254,.35);
}

/* Photo band (stages) — hauteur spécifique */
.lp-stages-photo-band { height: 440px; }

/* CTA final (stages) — override couleurs dégradé */
.lp-stages-cta-final::before {
    background: radial-gradient(circle, rgba(169,200,17,.12) 0%, transparent 70%);
}
.lp-stages-cta-final::after {
    background: radial-gradient(circle, rgba(0,182,196,.1) 0%, transparent 70%);
}
.lp-stages-cta-final p { margin-bottom: 2.5rem; }

/* Formulaire stages — largeur max différente */
.lp-form-stages { max-width: 720px; }

/* Modale réservation */
.booking-modal-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(10,25,50,.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-items: center; justify-content: center;
    padding: 1.5rem;
}
.booking-modal-overlay.is-open { display: flex; }
.booking-modal {
    position: relative;
    width: 100%; max-width: 980px;
    height: min(88vh, 760px);
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,.55);
    display: flex; flex-direction: column;
    animation: modalIn .22s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(18px) scale(.98); }
    to   { opacity: 1; transform: none; }
}
.booking-modal-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 1.5rem;
    background: var(--navy-deep);
    flex-shrink: 0;
}
.booking-modal-header span { color: #fff; font-weight: 700; font-size: .95rem; }
.booking-modal-close {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.12);
    border: none; border-radius: 50%;
    color: #fff; font-size: 1.1rem; cursor: pointer;
    transition: background .2s;
    line-height: 1;
}
.booking-modal-close:hover { background: rgba(255,255,255,.24); }
.booking-modal iframe { flex: 1; width: 100%; border: none; }

/* Responsive stages */
@media (max-width: 960px) {
    .lp-gallery { grid-template-columns: 1fr 1fr; }
    .lp-gallery-main { height: 200px; }
    .lp-gallery-item { height: 95px; }
    .lp-testimonials { grid-template-columns: 1fr; gap: 1rem; }
    .lp-hebergement-grid { grid-template-columns: 1fr 1fr; }
    .lp-hebergement-grid .lp-heberg-photo:last-child { grid-column: span 2; }
}
@media (max-width: 620px) {
    .booking-modal-overlay { padding: 0; align-items: flex-end; }
    .booking-modal { border-radius: var(--radius) var(--radius) 0 0; height: 92vh; max-width: 100%; }
    .lp-timeline::before { display: none; }
    .lp-tl-item { grid-template-columns: 1fr; gap: .5rem; }
    .lp-tl-time { text-align: left; padding-right: 0; }
    .lp-tl-dot { display: none; }
    .lp-gallery { grid-template-columns: 1fr; }
    .lp-gallery-side { flex-direction: row; }
    .lp-gallery-main { height: 180px; }
    .lp-gallery-item { height: 120px; }
    .lp-photo-band { height: 300px; }
    .stage-card-img { height: 160px; }
    .lp-heberg-item { padding: 1.1rem 1.25rem; gap: 1rem; }
    .lp-heberg-icon { width: 46px; height: 46px; font-size: 1.4rem; }
    .lp-hebergement-grid { grid-template-columns: 1fr; }
    .lp-hebergement-grid .lp-heberg-photo:last-child { grid-column: span 1; }
    .lp-heberg-list { grid-template-columns: 1fr; }
}


/* ============================================================
   PAGE : Activités Outdoor (landing — activites/landing.html.twig)
   ============================================================ */

/* Hero — gradient nature (vert) */
.lp-activites-hero::before {
    background: linear-gradient(160deg, rgba(15,42,79,.82) 0%, rgba(30,80,30,.55) 60%, rgba(100,160,0,.2) 100%);
    z-index: 1;
}
.lp-activites-hero h1 .hl { color: #A9C811; }

/* Blocs activités tags */
.activite-block {
    background: #fff; border: 1px solid var(--rule);
    border-radius: var(--radius); padding: 2rem 2.25rem;
    box-shadow: var(--shadow);
}
.activite-block h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 1.25rem; font-weight: 700; }

/* Tarifs table (activités) */
.tarif-table {
    width: 100%; border-collapse: collapse; font-size: .9rem;
}
.tarif-table th {
    background: var(--navy); color: #fff;
    padding: .85rem 1rem; text-align: left; font-size: .78rem;
    font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}
.tarif-table td {
    padding: .85rem 1rem; border-bottom: 1px solid var(--rule);
    color: var(--ink);
}
.tarif-table tr:last-child td { border-bottom: none; }
.tarif-table tr:hover td { background: rgba(169,200,17,.04); }
.tarif-table .prix { font-weight: 700; color: var(--navy); text-align: right; }

/* FAQ override activités */
.lp-activites details.faq-item[open] summary { background: var(--vert); color: var(--navy); }
.lp-activites details.faq-item[open] summary::after { color: var(--navy); }

/* CTA final activités — override .hl */
.lp-activites-cta .lp-cta-final h2 .hl { color: #A9C811; }

/* Responsive activités */
@media (max-width: 960px) {
    .lp-activites .lp-photo-band { background-attachment: scroll; }
}


/* ============================================================
   PAGE : Piscine (landing — piscine/landing.html.twig)
   ============================================================ */

/* Hero — gradient bleu/turquoise */
.lp-piscine-hero::before {
    background: linear-gradient(160deg, rgba(15,42,79,.82) 0%, rgba(0,100,140,.55) 60%, rgba(0,182,196,.2) 100%);
    z-index: 1;
}
.lp-piscine-hero h1 .hl { color: #00B6C4; }

/* Réassurance icon — turquoise */
.lp-piscine .lp-reassurance-icon { background: rgba(0,182,196,.18); }

/* Horaires badge */
.horaire-badge {
    display: inline-block;
    background: rgba(0,182,196,.12);
    border: 1px solid rgba(0,182,196,.3);
    color: var(--turquoise-deep, #007a87);
    font-size: .82rem; font-weight: 700;
    padding: .3rem .8rem; border-radius: 999px;
}

/* Cours cards */
.cours-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.cours-card {
    background: #fff; border: 1px solid var(--rule);
    border-radius: var(--radius); padding: 1.75rem;
    box-shadow: var(--shadow);
    display: flex; flex-direction: column; gap: .75rem;
}
.cours-card-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: rgba(0,182,196,.1); border: 1px solid rgba(0,182,196,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; flex-shrink: 0;
}
.cours-card h3 { color: var(--navy); font-size: 1.05rem; margin: 0; font-weight: 700; }
.cours-card p { color: var(--ink-soft); font-size: .88rem; margin: 0; line-height: 1.6; }
.cours-horaires {
    background: rgba(0,182,196,.07);
    border: 1px solid rgba(0,182,196,.2);
    border-radius: 10px;
    padding: .75rem 1rem;
    display: flex; flex-direction: column; gap: .4rem;
}
.cours-horaire-row {
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem;
}
.cours-jour {
    font-size: .88rem; font-weight: 700; color: var(--navy);
    white-space: nowrap;
}
.cours-heure {
    font-size: .88rem; font-weight: 600; color: #007a87;
    white-space: nowrap;
}
.cours-card .cours-tarif {
    font-weight: 800; color: var(--navy); font-size: 1.05rem; margin-top: auto;
}

/* Tarif table piscine — variante hover turquoise */
.tarif-table-piscine tr:hover td { background: rgba(0,182,196,.04); }
.tarif-table-piscine .prix { font-weight: 800; }

/* CTA final piscine — override couleurs dégradé */
.lp-piscine-cta-final::before {
    background: radial-gradient(circle, rgba(0,182,196,.12) 0%, transparent 70%);
}
.lp-piscine-cta-final::after {
    background: radial-gradient(circle, rgba(169,200,17,.1) 0%, transparent 70%);
}
.lp-piscine-cta-final h2 .hl { color: #00B6C4; }

/* Formulaire piscine — focus turquoise */
.lp-piscine-form .lp-form-group input:focus,
.lp-piscine-form .lp-form-group select:focus,
.lp-piscine-form .lp-form-group textarea:focus { border-color: #00B6C4; }

/* FAQ override piscine */
.lp-piscine details.faq-item[open] summary { background: #00B6C4; }

/* Responsive piscine */
@media (max-width: 960px) {
    .cours-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
    .cours-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   PAGE : Stages enfants & ados (sejours/enfants.html.twig)
   ============================================================ */

/* Galerie intro */
.intro-gallery { display: grid; grid-template-columns: 1.8fr 1fr; gap: .6rem; margin-top: 2rem; }
.intro-gallery-main { height: 260px; border-radius: var(--radius); overflow: hidden; }
.intro-gallery-side { height: 260px; border-radius: var(--radius); overflow: hidden; }
.intro-gallery-main img, .intro-gallery-side img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.intro-gallery-main:hover img, .intro-gallery-side:hover img { transform: scale(1.04); }
@media (max-width: 620px) {
    .intro-gallery { grid-template-columns: 1fr; }
    .intro-gallery-main, .intro-gallery-side { height: 180px; }
}


/* ============================================================
   PAGE : Détail stage (sejours/stage-ete-detail.html.twig)
   ============================================================ */

/* Hero compact */
.sd-hero {
    min-height: 320px;
    background-size: cover; background-position: center;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 2.5rem 1.5rem;
    position: relative;
}
.sd-hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,42,79,.93) 0%, rgba(15,42,79,.5) 55%, rgba(0,0,0,.15) 100%);
}
.sd-hero > * { position: relative; z-index: 1; }
.sd-hero-inner { max-width: 1100px; margin: 0 auto; width: 100%; }
.sd-hero h1 {
    font-family: var(--font-display), sans-serif; font-size: clamp(2rem, 5vw, 3.2rem);
    color: #fff; font-weight: 800; line-height: 1.1; margin: .5rem 0 1rem;
}
.sd-hero-meta { display: flex; flex-wrap: wrap; gap: .6rem; }

/* Breadcrumb */
.sd-breadcrumb {
    background: var(--paper-soft);
    border-bottom: 1px solid var(--rule);
    padding: .65rem 1.5rem;
    font-size: .82rem; color: var(--ink-soft);
}
.sd-breadcrumb a { color: var(--navy); text-decoration: none; font-weight: 500; }
.sd-breadcrumb a:hover { text-decoration: underline; }
.sd-breadcrumb span { margin: 0 .4rem; opacity: .4; }

/* Layout */
.sd-layout {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Description + programme */
.sd-desc {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.75rem;
}
.sd-desc h3 {
    color: var(--navy); font-size: 1rem; font-weight: 700;
    margin: 0 0 .75rem;
}
.sd-desc p { color: var(--ink-soft); font-size: .92rem; line-height: 1.65; margin: 0; }
.sd-desc .sd-prog {
    background: var(--paper-soft); border-left: 3px solid var(--vert);
    border-radius: 0 8px 8px 0;
    padding: .85rem 1rem; margin-top: .75rem;
    font-size: .88rem; color: var(--ink); line-height: 1.6;
}

/* Tableau sessions */
.sd-sessions-wrap {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.sd-sessions-header {
    background: var(--navy-deep);
    padding: 1rem 1.5rem;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.sd-sessions-header h2 {
    color: #fff; font-size: 1rem; font-weight: 700; margin: 0;
    letter-spacing: .01em;
}
.sd-sessions-header span {
    font-size: .78rem; color: rgba(255,255,255,.55); white-space: nowrap;
}
.sd-sessions-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .86rem;
}
.sd-sessions-table thead tr { background: var(--navy); }
.sd-sessions-table thead th {
    color: rgba(255,255,255,.85);
    font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .07em;
    padding: .65rem .9rem;
    text-align: left;
    border-bottom: 2px solid var(--vert);
    white-space: nowrap;
}
.sd-sessions-table tbody td {
    padding: .8rem .9rem;
    border-bottom: 1px solid var(--rule);
    vertical-align: middle;
    color: var(--ink);
}
.sd-sessions-table tbody tr:last-child td { border-bottom: none; }
.sd-sessions-table tbody tr:hover td { background: rgba(169,200,17,.05); }
.sd-ref {
    font-family: var(--font-mono, monospace), monospace;
    font-weight: 700; font-size: .82rem;
    color: var(--navy);
    background: var(--paper-soft);
    border: 1px solid var(--rule);
    border-radius: 6px;
    padding: .2rem .55rem;
    display: inline-block;
    white-space: nowrap;
}
.sd-date { font-weight: 600; color: var(--navy); white-space: nowrap; }
.sd-tarif { font-weight: 800; color: var(--vert-deep); white-space: nowrap; }
.sd-places {
    display: inline-flex; align-items: center; gap: .35rem;
    font-weight: 700; font-size: .82rem;
    padding: .2rem .6rem; border-radius: 999px;
    white-space: nowrap;
}
.sd-places.complet { background: rgba(220,53,69,.1); color: #c82333; }
.sd-places.dispo { background: rgba(169,200,17,.15); color: #5a8a00; }
.sd-places.peu { background: rgba(255,165,0,.15); color: #d47a00; }

/* Section iframe réservation */
.sd-booking-section {
    background: var(--paper-soft);
    border-top: 1px solid var(--rule);
    padding: 4.5rem 1.5rem;
}
.sd-iframe-wrap {
    max-width: 900px; margin: 0 auto;
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.sd-iframe-wrap iframe { display: block; border: none; width: 100%; }

/* Responsive détail stage */
@media (max-width: 620px) {
    .sd-hero { min-height: 240px; padding: 1.5rem 1rem; }
    .sd-layout { padding: 1.5rem 1rem; }
    .sd-sessions-table { font-size: .8rem; }
    .sd-sessions-table thead th,
    .sd-sessions-table tbody td { padding: .6rem .65rem; }
}


/* ============================================================
   PAGE : Piscine cycles natation (piscine/cycles.html.twig)
   ============================================================ */

details[open] > summary {
    background: var(--vert) !important;
    color: #fff !important;
    border-radius: var(--radius) var(--radius) 0 0;
}
details[open] > summary span { color: #fff !important; }
details > p { padding-top: 1rem !important; }


/* ============================================================
   PAGE : Piscine index (piscine/index.html.twig)
   ============================================================ */

.btn-ghost-white:hover { background:#fff !important; color:var(--navy) !important; border-color:#fff !important; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox-trigger { cursor: zoom-in; }
.lightbox-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,.88);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.lightbox-overlay.is-open { display: flex; }
.lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 48px rgba(0,0,0,.6);
}
.lightbox-close {
    position: absolute; top: 1.25rem; right: 1.25rem;
    background: rgba(255,255,255,.15);
    border: none; color: #fff;
    font-size: 1.75rem; line-height: 1;
    width: 44px; height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.3); }

/* ── Actualités ────────────────────────────────────── */
.actu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 1024px) { .actu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .actu-grid { grid-template-columns: 1fr; } }
.actu-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; }
.actu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.actu-card-img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.actu-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.actu-card:hover .actu-card-img img { transform: scale(1.04); }
.actu-badge { position: absolute; top: .75rem; left: .75rem; font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: .3rem .75rem; border-radius: 100px; background: var(--navy); color: #fff; }
.actu-badge.is-vert { background: var(--vert); color: var(--navy); }
.actu-badge.is-turquoise { background: var(--turquoise); color: #fff; }
.actu-badge.is-bleu { background: var(--bleu); color: #fff; }
.actu-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.actu-date { font-size: .78rem; color: var(--ink-soft); font-weight: 500; letter-spacing: .03em; margin-bottom: .5rem; display: block; }
.actu-card-body h2 { font-size: 1.1rem; line-height: 1.4; color: var(--navy); margin-bottom: .75rem; }
.actu-card-body p { font-size: .92rem; color: var(--ink-soft); line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.actu-lien { font-size: .88rem; font-weight: 700; color: var(--navy); text-decoration: none; display: inline-flex; align-items: center; gap: .3rem; transition: gap .2s, color .2s; }
.actu-lien:hover { color: var(--vert); gap: .5rem; }

/* ── Utilitaires ── */

/* Section avec fond clair et padding vertical standard */
.section-paper {
    background: var(--paper-soft);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Section avec padding vertical standard (sans fond) */
.section-padded {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Largeurs max sur container */
.container-700  { max-width: 700px; }
.container-720  { max-width: 720px; }
.container-760  { max-width: 760px; }
.container-800  { max-width: 800px; }
.container-860  { max-width: 860px; }
.container-900  { max-width: 900px; }

/* Alignement */
.text-center { text-align: center; }
.justify-center { justify-content: center; }

/* Espacement */
.mt-lead { margin: 1rem auto 0; }
.mt-1r   { margin-top: 1rem; }
.mt-2r   { margin-top: 2rem; }
.mt-1h   { margin-top: 1.5rem; }

/* Hero CTA spacing */
.hero-cta-mt { margin-top: 2rem; }

/* Lead coloré dans les hero */
.lead-light { color: rgba(255,255,255,.92); }

/* Flex colonne avec gap */
.flex-col-1 { display: flex; flex-direction: column; gap: 1rem; }
.flex-col-1h { display: flex; flex-direction: column; gap: 1.25rem; }

/* Texte couleur ink-soft avec interligne aéré */
.text-soft { color: var(--ink-soft); line-height: 1.75; }

/* Activity content positionné relativement (pour les numéros) */
.activity-content-rel { position: relative; }

/* Numéros de bloc activité */
.activity-num-tr { top: -2rem; right: 0; }
.activity-num-tl { top: -2rem; left: 0; }

/* Titre de liste dans info-split */
.list-title {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: .5rem;
}

/* Titre de liste avec espacement supérieur */
.list-title-mt {
    font-weight: 600;
    color: var(--navy);
    margin-top: 1.25rem;
    margin-bottom: .25rem;
}

/* Grille galerie photos 4 colonnes */
.gallery-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .75rem;
}
@media (max-width: 900px) { .gallery-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid-4 { grid-template-columns: 1fr 1fr; } }

/* Cellule de galerie */
.gallery-cell {
    height: 220px;
    border-radius: var(--radius);
    overflow: hidden;
}
.gallery-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}
.gallery-cell img:hover { transform: scale(1.04); }

/* Bandeau info (fond clair) */
.info-band {
    background: var(--paper-soft);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
}

/* Grille 2 colonnes pour affiches/images */
.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}
@media (max-width: 640px) { .grid-2col { grid-template-columns: 1fr; } }

/* Image full dans un conteneur avec radius+shadow */
.img-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.img-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Boîte de contact/CTA avec fond paper-soft */
.contact-box {
    background: var(--paper-soft);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
}

/* Grille témoignages 3 colonnes */
.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 900px) { .temoignages-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .temoignages-grid { grid-template-columns: 1fr; } }

/* Carte témoignage */
.temoignage-card {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Avatar dans témoignage */
.temoignage-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--paper);
    flex-shrink: 0;
    border: 3px solid var(--vert);
    box-shadow: 0 2px 8px rgba(169,200,17,.25);
}
.temoignage-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Blockquote témoignage */
.temoignage-quote {
    color: var(--ink);
    font-size: .92rem;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

/* Citation témoignage */
.temoignage-cite {
    color: var(--ink-soft);
    font-size: .8rem;
    font-style: normal;
    font-weight: 600;
    display: block;
    margin-top: auto;
}

/* info-split centré max 900px */
.info-split-900 { max-width: 900px; margin: 0 auto; }

/* Badge note avis */
.rating-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: rgba(169,200,17,.12);
    border: 1px solid rgba(169,200,17,.3);
    color: var(--vert-deep);
    font-size: .9rem;
    font-weight: 700;
    padding: .55rem 1.25rem;
    border-radius: 999px;
    width: fit-content;
    margin: 0 auto 2.5rem;
}

/* Carte box avec fond (équipements, formations) */
.card-box {
    background: var(--paper-soft);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
}

/* Carte box blanche */
.card-box-white {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow);
}

/* Titre de carte h3 */
.card-h3 { font-size: 1.1rem; margin-bottom: .75rem; }

/* Texte de carte */
.card-text { color: var(--ink-soft); font-size: .9rem; margin-bottom: 1rem; }

/* Image hero pleine hauteur dans activity-visual */
.activity-visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    background: #F5F8FB;
}
.activity-visual-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Alerte bonnet obligatoire (warning) */
.alert-warning {
    background: #FFF8E1;
    border: 1px solid #F9A825;
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: .75rem;
}
.alert-warning-icon { font-size: 1.3rem; }
.alert-warning p { margin: 0; font-weight: 600; color: #5D4037; }

/* Section image de fond avec overlay foncé */
.section-bg-overlay { position: relative; }
.section-bg-overlay > .bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,42,79,.72);
}
.section-bg-overlay > .bg-overlay + * { position: relative; z-index: 1; }

/* Cours de natation : carte niveau */
.swim-level-card {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    height: 100%;
}
.swim-level-card h3 { margin: .5rem 0 1rem; }
.swim-schedule {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    color: var(--ink-soft);
}
.swim-price { margin-top: 1.25rem; font-weight: 700; color: var(--navy); }

/* Tarif margin */
.price-label { margin-top: 1rem; font-weight: 700; color: var(--navy); }

/* Tarif famille box */
.tarif-famille-box {
    background: var(--paper-soft);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin-top: 1rem;
}

/* Image avec ratio fixe */
.img-cover-760 {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.img-cover-760 img { width: 100%; height: 340px; object-fit: cover; display: block; }

/* Flex wrap badges avec centrage */
.badges-center {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
    margin-top: 1.5rem;
}

/* Small dans rental-card h3 */
.rental-card-small { font-weight: 500; font-size: .85rem; color: var(--ink-soft); }

/* Lien téléphone coloré */
.tel-turquoise { color: var(--turquoise-deep); font-weight: 600; }
.tel-navy { color: var(--navy); font-weight: 600; }

/* Sous-titre h3 dans section contact */
.contact-h3 { margin: .5rem 0 1rem; }

/* Formation card h3 */
.formation-h3 { font-size: 1.15rem; margin: .5rem 0 .75rem; }

/* Eyebrow petit format */
.eyebrow-sm { font-size: .72rem; }

/* h3 hébergement */
.hebergement-h3 { font-size: 1.3rem; margin: .5rem 0 .75rem; }

/* Texte centré pour info */
.info-text-center {
    text-align: center;
    color: var(--navy);
    font-weight: 600;
}

/* Paragraphe ink-soft centré */
.para-soft-center {
    color: var(--ink-soft);
    text-align: center;
}

/* Paragraphe ink-soft */
.para-soft { color: var(--ink-soft); }

/* Paragraphe ink-soft avec margin-bottom */
.para-soft-mb { color: var(--ink-soft); margin-bottom: 1rem; }
