:root {
  --ink: #181716;
  --muted: #5f625c;
  --paper: #fbfaf6;
  --wash: #f0f4ee;
  --line: #ddd8cc;
  --green: #315c45;
  --clay: #a84f36;
  --blue: #246a73;
  --gold: #d9a441;
  --shadow: 0 18px 60px rgba(24, 23, 22, .12);
  --soft-shadow: 0 10px 35px rgba(24, 23, 22, .08);
  --edge: max(clamp(1rem, 5vw, 4rem), calc((100vw - 1280px) / 2 + 2rem));
  color-scheme: light;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--paper), #f7f3ea 100%);
  line-height: 1.55;
}
a { color: inherit; text-decoration-color: rgba(49, 92, 69, .35); text-underline-offset: .18em; }
img { display: block; max-width: 100%; height: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem var(--edge);
  background: rgba(251, 250, 246, .94);
  border-bottom: 1px solid rgba(221, 216, 204, .75);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: .6rem; font-weight: 800; text-decoration: none; letter-spacing: 0; }
.brand-mark { width: 42px; height: 42px; object-fit: contain; filter: drop-shadow(0 4px 10px rgba(24, 23, 22, .08)); }
.site-nav { display: flex; gap: .2rem; overflow-x: auto; scrollbar-width: none; }
.site-nav a {
  padding: .55rem .7rem;
  font-size: .9rem;
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
}
.site-nav a[aria-current="page"], .site-nav a:hover { background: var(--wash); color: var(--green); }
.header-cta {
  display: none;
  padding: .55rem .7rem;
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  font-size: .88rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.hero {
  min-height: 68svh;
  position: relative;
  display: grid;
  align-items: center;
  padding: clamp(5.5rem, 13vh, 8rem) var(--edge) clamp(2rem, 6vh, 3rem);
  overflow: hidden;
  background: #1f2724;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 11, 10, .74), rgba(8, 11, 10, .18) 62%),
    linear-gradient(180deg, rgba(8, 11, 10, .06), rgba(8, 11, 10, .55));
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  color: #fff;
}
.eyebrow {
  margin: 0 0 .65rem;
  color: var(--clay);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero .eyebrow { color: #f6c86f; }
h1, h2, h3 { line-height: 1.05; letter-spacing: 0; margin: 0; }
h1 { font-size: clamp(2.15rem, 6.4vw, 4.4rem); max-width: 14ch; font-weight: 850; }
h2 { font-size: clamp(1.65rem, 4.4vw, 3.1rem); }
h3 { font-size: 1.25rem; }
.hero p { max-width: 760px; font-size: clamp(1.05rem, 2.5vw, 1.35rem); }
.hero-actions, .contact-band { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .72rem 1rem;
  border-radius: 6px;
  border: 1px solid currentColor;
  font-weight: 750;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.button:hover { transform: translateY(-1px); box-shadow: var(--soft-shadow); }
.button.primary { background: var(--green); color: #fff; border-color: var(--green); }
.hero .button.primary { background: #fff; color: var(--ink); border-color: #fff; }
.button.secondary { color: var(--green); background: transparent; }
.hero .button.secondary { color: #fff; border-color: rgba(255,255,255,.75); }
.quick-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  padding-inline: var(--edge);
  background: var(--line);
  border-bottom: 1px solid var(--line);
}
.quick-strip div {
  padding: 1.05rem 1.25rem;
  background: rgba(255, 255, 255, .92);
}
.quick-strip strong { display: block; color: var(--green); }
.quick-strip span { color: var(--muted); }
.section {
  padding: clamp(3rem, 8vw, 7rem) var(--edge);
}
.section-heading { max-width: 760px; margin-bottom: 1.5rem; }
.section-heading p:last-child { color: var(--muted); font-size: 1.05rem; }
.intro-grid, .split-panel, .local-seo, .contact-layout {
  display: grid;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}
.rich-text { max-width: 820px; color: var(--muted); }
.rich-text h2 { margin: 2rem 0 .8rem; color: var(--ink); font-size: clamp(1.45rem, 3.5vw, 2.25rem); }
.rich-text p { margin: 0 0 1rem; }
.practice-grid {
  display: grid;
  gap: 1.15rem;
}
.practice-card {
  display: grid;
  background: #fff;
  border: 1px solid rgba(221, 216, 204, .82);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(24, 23, 22, .04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.practice-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--soft-shadow);
  border-color: rgba(49, 92, 69, .25);
}
.practice-media { min-height: 240px; background: var(--wash); overflow: hidden; }
.practice-media img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; transition: transform .28s ease; }
.practice-card:hover .practice-media img { transform: scale(1.025); }
.image-danse-intuitive { object-position: center 18%; }
.image-chant {
  object-fit: contain !important;
  object-position: center;
  background: #fff;
  padding: .35rem;
}
.practice-copy { padding: 1.15rem; }
.practice-copy h3 a { text-decoration: none; }
.practice-copy p { color: var(--muted); }
.card-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}
.card-link::after { content: "→"; margin-left: .4rem; }
.mini-facts {
  display: grid;
  gap: .7rem;
  margin: 1rem 0 0;
}
.mini-facts div, .activity-aside dl div {
  padding-top: .7rem;
  border-top: 1px solid var(--line);
}
dt { font-weight: 800; color: var(--ink); }
dd { margin: .1rem 0 0; color: var(--muted); }
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(24, 23, 22, .04);
}
.table-wrap.full { width: 100%; }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
caption { text-align: left; padding: 1rem; font-weight: 800; color: var(--green); }
th, td { padding: .85rem 1rem; border-top: 1px solid var(--line); text-align: left; vertical-align: top; }
thead th { color: var(--green); background: var(--wash); }
tbody th { width: 8rem; }
.schedule-cards { display: none; }
.schedule-card {
  display: grid;
  gap: .45rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(24, 23, 22, .04);
}
.schedule-card div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .75rem;
}
.schedule-card strong { color: var(--green); font-size: 1rem; }
.schedule-card span { color: var(--clay); font-weight: 850; }
.schedule-card p { margin: 0; font-weight: 800; }
.schedule-card small { color: var(--muted); font-size: .94rem; }
.local-links {
  display: grid;
  gap: .75rem;
}
.local-links a {
  display: grid;
  gap: .25rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(24, 23, 22, .04);
}
.local-links strong { color: var(--green); }
.local-links span { color: var(--muted); }
.local-links a:hover { border-color: rgba(49, 92, 69, .35); box-shadow: var(--soft-shadow); }
.faq-list { display: grid; gap: .6rem; max-width: 900px; }
details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 1px 0 rgba(24, 23, 22, .03);
}
summary { cursor: pointer; font-weight: 800; }
details p { color: var(--muted); margin-bottom: 0; }
.contact-band {
  justify-content: space-between;
  background: #202c27;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-band .eyebrow { color: var(--gold); }
.contact-band p { max-width: 720px; color: rgba(255,255,255,.78); }
.contact-band p a { color: #fff; font-weight: 800; }
.contact-actions { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; }
.contact-band .button.primary { background: #fff; color: var(--ink); border-color: #fff; }
.contact-band .button.secondary { color: #fff; border-color: rgba(255,255,255,.72); background: transparent; }
.conversion-panel {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}
.conversion-panel h2 { color: var(--green); font-size: 1.35rem; }
.conversion-panel p { margin: 0; color: var(--muted); }
.conversion-panel .button { width: 100%; }
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.social-row .button { width: auto; }
.site-footer {
  display: grid;
  gap: 1rem;
  padding: 2rem var(--edge);
  background: var(--ink);
  color: rgba(255,255,255,.78);
}
.site-footer strong { color: #fff; }
.site-footer a { color: #fff; }
.page-hero {
  padding: clamp(4.2rem, 9vw, 6.4rem) var(--edge) clamp(2.2rem, 5vw, 3.4rem);
  background: linear-gradient(135deg, var(--wash), #fbfaf6 78%);
  border-bottom: 1px solid rgba(221, 216, 204, .7);
}
.page-hero.compact h1 { max-width: 16ch; color: var(--green); }
.page-hero p:last-child { max-width: 760px; color: var(--muted); font-size: 1.1rem; }
.activity-hero {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(4.4rem, 9vw, 6.4rem) var(--edge) clamp(2.4rem, 5vw, 3.6rem);
  background: linear-gradient(135deg, var(--wash), #fbfaf6 76%);
  border-bottom: 1px solid rgba(221, 216, 204, .7);
}
.activity-hero h1 { max-width: 13ch; color: var(--green); }
.activity-hero p { max-width: 680px; color: var(--muted); font-size: 1.1rem; }
.activity-hero figure { margin: 0; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }
.activity-hero img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.activity-grid { display: grid; gap: 2rem; align-items: start; }
.activity-aside {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.15rem;
  box-shadow: var(--soft-shadow);
}
.activity-aside h2 { font-size: 1.25rem; margin-bottom: 1rem; color: var(--green); }
.activity-aside dl { display: grid; gap: .85rem; margin: 0; }
.activity-gallery h2 { color: var(--green); }
.activity-gallery > div { display: grid; gap: 1rem; }
.activity-gallery figure { margin: 0; border-radius: 8px; overflow: hidden; box-shadow: var(--soft-shadow); }
.activity-gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.activity-faq { padding: 0 var(--edge) clamp(3rem, 7vw, 5rem); }
.teacher-list { display: grid; gap: 1rem; }
.teacher-row {
  display: grid;
  gap: 1rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(24, 23, 22, .04);
}
.teacher-row img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.teacher-row div { padding: 1rem; }
.map-link {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.15rem;
  box-shadow: var(--soft-shadow);
}
.mobile-cta { display: none; }
@media (min-width: 720px) {
  .quick-strip { grid-template-columns: repeat(3, 1fr); }
  .practice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .activity-gallery > div { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .teacher-row { grid-template-columns: minmax(220px, .35fr) 1fr; }
}
@media (min-width: 980px) {
  .header-cta { display: inline-flex; }
  .intro-grid, .split-panel, .local-seo, .contact-layout { grid-template-columns: .75fr 1.25fr; }
  .practice-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .activity-hero { grid-template-columns: .9fr .75fr; }
  .activity-grid { grid-template-columns: 340px 1fr; }
  .activity-aside { position: sticky; top: 5.75rem; }
  .site-footer { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  :root { --edge: clamp(1rem, 5vw, 1.25rem); }
  body { padding-bottom: 4.1rem; }
  .brand span { display: none; }
  .brand-mark { width: 38px; height: 38px; }
  .site-header { align-items: center; gap: .45rem; padding-block: .55rem; }
  .site-nav { flex: 1; }
  .site-nav a { font-size: .83rem; padding: .45rem .48rem; }
  .site-nav a[href="/contact/"] { display: none; }
  .site-nav a[href="/intervenants/"] { display: none; }
  h1 { font-size: clamp(2rem, 12vw, 2.32rem); }
  h2 { font-size: clamp(1.55rem, 9vw, 2.15rem); }
  .hero { min-height: 76svh; padding-top: 4.5rem; }
  .hero p { font-size: 1.02rem; }
  .eyebrow { font-size: .72rem; line-height: 1.3; }
  .quick-strip { padding-inline: var(--edge); }
  .quick-strip div { padding: .9rem 1rem; }
  .section { padding-block: 2.75rem; }
  .page-hero { padding-top: 3.5rem; padding-bottom: 2.3rem; }
  .activity-hero { padding-top: 3.5rem; padding-bottom: 2.3rem; }
  .activity-hero h1 { max-width: 13ch; }
  .activity-hero p { font-size: 1rem; }
  .activity-hero img { aspect-ratio: 5 / 4; }
  .practice-media, .practice-media img { min-height: 210px; }
  .table-wrap { display: none; }
  .schedule-cards { display: grid; gap: .75rem; }
  .hero-actions .button, .contact-band .button { width: 100%; }
  .mobile-cta {
    position: fixed;
    z-index: 30;
    left: 1rem;
    right: 1rem;
    bottom: .6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 8px;
    background: var(--green);
    color: #fff;
    font-weight: 850;
    text-decoration: none;
    box-shadow: var(--shadow);
  }
  .home-page {
    padding-bottom: 0;
  }
  .home-page .mobile-cta {
    display: none;
  }
}
