@font-face { font-family: 'Jost'; font-style: normal; font-weight: 300 500; font-display: swap; src: url('fonts/jost-latin-ext.woff2') format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Jost'; font-style: normal; font-weight: 300 500; font-display: swap; src: url('fonts/jost-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Lora'; font-style: normal; font-weight: 400 500; font-display: swap; src: url('fonts/lora-normal-latin-ext.woff2') format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Lora'; font-style: normal; font-weight: 400 500; font-display: swap; src: url('fonts/lora-normal-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Lora'; font-style: italic; font-weight: 400 500; font-display: swap; src: url('fonts/lora-italic-latin-ext.woff2') format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Lora'; font-style: italic; font-weight: 400 500; font-display: swap; src: url('fonts/lora-italic-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

:root {
  --sable:       #e8ddd0;
  --sable-2:     #f2ece3;
  --sable-3:     #faf7f2;
  --terre:       #5c3d2e;
  --terre-2:     #8b5e4a;
  --encre:       #1e1a16;
  --gris-chd:    #7a7068;
  --rose-poudre: #d4a090;
  --ease: cubic-bezier(0.25, 0, 0.1, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--sable-3); color: var(--encre); overflow-x: hidden; }

/* ── ANNONCE ── */
.annonce {
  background: var(--terre);
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 0.7rem 2rem;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.12em;
}
.annonce strong { font-weight: 500; }
.annonce-large { padding: 1.4rem 2rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; letter-spacing: 0.05em; }
.annonce-titre { font-weight: 500; font-size: 0.88rem; letter-spacing: 0.1em; }
.annonce-corps { font-size: 0.78rem; color: rgba(255,255,255,0.8); }
.annonce-dates { display: flex; align-items: center; gap: 1rem; font-size: 0.8rem; font-weight: 400; color: var(--rose-poudre); }
.annonce-sep { color: rgba(255,255,255,0.3); }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s var(--ease);
}
nav.scrolled {
  top: 0;
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(16px);
  padding: 1.1rem 4rem;
  box-shadow: 0 1px 0 rgba(92,61,46,0.1);
}
.nav-logo { font-family: 'Lora', serif; font-size: 1.1rem; font-weight: 400; letter-spacing: 0.06em; color: var(--sable-3); text-decoration: none; transition: color 0.3s; }
nav.scrolled .nav-logo { color: var(--encre); }
.nav-logo-img { height: 44px; width: auto; filter: brightness(0) invert(1); transition: filter 0.3s, opacity 0.3s; opacity: 0; pointer-events: none; }
nav.scrolled .nav-logo-img { filter: brightness(0); opacity: 1; pointer-events: auto; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a { font-size: 0.8rem; font-weight: 400; letter-spacing: 0.08em; color: rgba(250,247,242,0.6); text-decoration: none; transition: color 0.25s; }
nav.scrolled .nav-links a { color: var(--gris-chd); }
.nav-links a:hover { color: var(--rose-poudre) !important; }
.nav-btn { padding: 0.55rem 1.4rem; border: 1px solid rgba(250,247,242,0.35); border-radius: 100px; font-size: 0.78rem; font-weight: 400; color: rgba(250,247,242,0.85) !important; letter-spacing: 0.08em; transition: all 0.3s !important; }
nav.scrolled .nav-btn { border-color: rgba(92,61,46,0.25); color: var(--terre) !important; }
.nav-btn:hover, .nav-links a.nav-btn:hover { background: var(--rose-poudre) !important; border-color: var(--rose-poudre) !important; color: white !important; }

/* ── HERO ── */
.hero { min-height: 75vh; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.hero-left {
  background: var(--terre);
  padding: 7rem 4rem 5rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute; inset: 0;
  background: url('images/IMG_98021.jpg') center/cover no-repeat;
  opacity: 0.2;
  mix-blend-mode: luminosity;
}
.hero-circle { position: absolute; width: 500px; height: 500px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.06); top: -120px; left: -120px; pointer-events: none; }
.hero-circle-2 { position: absolute; width: 300px; height: 300px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.05); bottom: 80px; right: -80px; pointer-events: none; }
.hero-left-content { position: relative; z-index: 2; }
.hero-logo { height: 250px; width: auto; filter: brightness(0) invert(1); margin-bottom: 2rem; opacity: 0; animation: fadeUp 0.7s var(--ease) 0.1s forwards; display: block; }
.hero-eyebrow { font-size: 0.7rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--rose-poudre); margin-bottom: 1.8rem; opacity: 0; animation: fadeUp 0.7s var(--ease) 0.3s forwards; }
.hero-title { font-family: 'Lora', serif; font-size: clamp(3rem, 5.5vw, 5.5rem); font-weight: 400; line-height: 1; letter-spacing: -0.02em; color: var(--sable-3); margin-bottom: 2.5rem; opacity: 0; animation: fadeUp 0.9s var(--ease) 0.5s forwards; }
.hero-title em { font-style: italic; color: rgba(250,247,242,0.45); display: block; }
.hero-desc { font-size: 0.95rem; font-weight: 300; color: rgba(250,247,242,0.5); line-height: 1.8; max-width: 320px; margin-bottom: 3rem; opacity: 0; animation: fadeUp 0.8s var(--ease) 0.65s forwards; }
.hero-cta { display: inline-flex; align-items: center; gap: 0.7rem; padding: 1rem 2rem; background: var(--rose-poudre); color: white; text-decoration: none; font-size: 0.8rem; font-weight: 400; letter-spacing: 0.1em; border-radius: 100px; width: fit-content; transition: all 0.35s var(--ease); opacity: 0; animation: fadeUp 0.7s var(--ease) 0.8s forwards; }
.hero-cta:hover { background: var(--sable-3); color: var(--terre); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(92,61,46,0.25); }

.hero-right { position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 3rem; }
.hero-right-img { position: absolute; inset: 0; }
.hero-right-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: sepia(15%) saturate(0.9); transition: transform 10s var(--ease); }
.hero-right-img:hover img { transform: scale(1.03); }
.hero-right-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(92,61,46,0.6) 0%, transparent 55%), linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, transparent 25%); }
.hero-right-caption { position: relative; z-index: 2; font-size: 0.75rem; font-weight: 300; color: rgba(250,247,242,0.6); letter-spacing: 0.1em; text-transform: uppercase; }
.hero-actu { position: absolute; top: 22.5rem; left: 12.5rem; right: 12.5rem; z-index: 3; background: rgba(92,61,46,0.8); border-radius: 20px; overflow: hidden; color: rgba(250,247,242,0.95); text-align: center; padding: 1.4rem 2rem; font-size: 0.8rem; font-weight: 300; letter-spacing: 0.06em; line-height: 1.6; }
.hero-actu .annonce-titre { font-weight: 500; font-size: 0.88rem; letter-spacing: 0.1em; margin-bottom: 0.3rem; }
.hero-actu .annonce-corps { font-size: 0.78rem; color: rgba(250,247,242,0.8); margin-bottom: 0.3rem; }
.hero-actu .annonce-dates { display: flex; justify-content: center; align-items: center; gap: 0.8rem; font-size: 0.78rem; color: var(--rose-poudre); margin: 0.3rem 0; flex-wrap: wrap; }
.hero-actu .annonce-sep { color: rgba(250,247,242,0.3); }

/* ── STATS ── */
.stats-band { background: var(--sable); display: flex; border-top: 1px solid rgba(92,61,46,0.12); border-bottom: 1px solid rgba(92,61,46,0.12); }
.stat-item { flex: 1; padding: 2.5rem 3rem; display: flex; align-items: center; gap: 1.5rem; border-right: 1px solid rgba(92,61,46,0.1); transition: background 0.3s; }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--sable-2); }
.stat-num { font-family: 'Lora', serif; font-size: 2.5rem; font-weight: 400; color: var(--terre); line-height: 1; flex-shrink: 0; }
.stat-text-label { font-size: 0.78rem; font-weight: 500; color: var(--encre); margin-bottom: 0.1rem; }
.stat-text-sub { font-size: 0.72rem; font-weight: 300; color: var(--gris-chd); }

/* ── COMMUN ── */
.s { padding: 7rem 4rem; }
.eyebrow { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--rose-poudre); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--rose-poudre); border-radius: 1px; }
h2.titre { font-family: 'Lora', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; letter-spacing: -0.015em; line-height: 1.15; margin-bottom: 1rem; }
h2.titre em { font-style: italic; color: var(--gris-chd); }

/* ── ABOUT ── */
.about { background: var(--sable-3); display: grid; grid-template-columns: 5fr 4fr; gap: 6rem; align-items: center; }
.about-text p { font-size: 1rem; font-weight: 300; color: var(--gris-chd); line-height: 1.9; margin-bottom: 1.5rem; max-width: 520px; }
.prof-strip { display: flex; align-items: center; gap: 1.2rem; padding: 1.5rem 2rem; background: var(--sable); border-radius: 16px; margin-top: 2.5rem; border: 1px solid rgba(92,61,46,0.1); }
.prof-initials { width: 48px; height: 48px; border-radius: 50%; background: var(--terre); display: flex; align-items: center; justify-content: center; font-family: 'Lora', serif; font-size: 1rem; color: var(--sable-2); flex-shrink: 0; }
.prof-info-name { font-family: 'Lora', serif; font-size: 1rem; font-weight: 400; margin-bottom: 0.15rem; }
.prof-info-role { font-size: 0.78rem; font-weight: 300; color: var(--gris-chd); line-height: 1.4; }
.about-visual { position: relative; }
.about-img-wrap { width: 100%; aspect-ratio: 3/4; overflow: hidden; border-radius: 120px 120px 0 0; background: var(--sable); }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: sepia(10%) saturate(0.85); transition: transform 0.8s var(--ease); }
.about-img-wrap:hover img { transform: scale(1.04); }
.about-badge { position: absolute; bottom: -1.5rem; left: -1.5rem; width: 130px; height: 130px; background: var(--rose-poudre); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 1rem; border: 4px solid var(--sable-3); }
.about-badge-num { font-family: 'Lora', serif; font-size: 1.8rem; font-weight: 400; color: white; line-height: 1; }
.about-badge-label { font-size: 0.62rem; font-weight: 400; color: rgba(255,255,255,0.8); letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.3; margin-top: 0.2rem; }

/* ── COURS ── */
.cours { background: var(--sable-2); }
.cours-intro { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; gap: 2rem; }
.cours-intro-sub { font-size: 0.92rem; font-weight: 300; color: var(--gris-chd); line-height: 1.7; max-width: 300px; }
.cours-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.cours-card { background: var(--sable-3); border-radius: 24px; overflow: hidden; border: 1px solid rgba(92,61,46,0.08); transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.cours-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(92,61,46,0.12); }
.cours-card-bar { height: 4px; }
.cours-card:nth-child(1) .cours-card-bar { background: var(--rose-poudre); }
.cours-card:nth-child(2) .cours-card-bar { background: var(--terre-2); }
.cours-card:nth-child(3) .cours-card-bar { background: var(--terre); }
.cours-card:nth-child(4) .cours-card-bar { background: #9b7b6a; }
.cours-card-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.cours-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.5s var(--ease); filter: saturate(0.9); }
.cours-card:hover .cours-card-img img { transform: scale(1.04); }
.cours-card:nth-child(3) .cours-card-img img { object-position: top; }
.cours-card-body { padding: 2rem 2rem 2.5rem; }
.cours-card-icon { font-size: 2rem; margin-bottom: 1.2rem; display: block; }
.cours-card-name { font-family: 'Lora', serif; font-size: 1.55rem; font-weight: 400; margin-bottom: 0.3rem; line-height: 1.1; }
.cours-card-age { font-size: 0.73rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rose-poudre); margin-bottom: 1.2rem; }
.cours-card-desc { font-size: 0.88rem; font-weight: 300; color: var(--gris-chd); line-height: 1.75; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(92,61,46,0.1); }
.sch-label { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gris-chd); margin-bottom: 0.8rem; opacity: 0.7; }
.sch-row { display: flex; justify-content: space-between; padding: 0.4rem 0; gap: 0.5rem; border-bottom: 1px solid rgba(92,61,46,0.06); }
.sch-row:last-child { border-bottom: none; }
.sch-niv { font-size: 0.8rem; font-weight: 400; color: var(--encre); flex: 1; }
.sch-h { font-size: 0.75rem; font-weight: 300; color: var(--gris-chd); white-space: nowrap; }

/* ── TARIFS ── */
.tarifs { background: var(--terre); color: var(--sable-2); }
.tarifs .eyebrow { color: var(--rose-poudre); }
.tarifs .eyebrow::before { background: var(--rose-poudre); }
.tarifs h2.titre { color: var(--sable-3); }
.tarifs h2.titre em { color: rgba(250,247,242,0.35); }

.tarifs-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; margin-bottom: 4rem; align-items: end; }
.tarifs-note { font-size: 0.9rem; font-weight: 300; color: rgba(250,247,242,0.5); line-height: 1.8; }
.tarifs-note strong { color: rgba(250,247,242,0.85); font-weight: 400; }

.tarifs-table { width: 100%; border-top: 1px solid rgba(250,247,242,0.12); }
.tarifs-col-head { display: grid; grid-template-columns: 1fr 90px 110px; gap: 2rem; padding: 0.8rem 0 1rem; }
.tarifs-col-head span { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250,247,242,0.25); text-align: right; }
.tarifs-col-head span:first-child { text-align: left; }

.tarif-ligne { display: grid; grid-template-columns: 1fr 90px 110px; gap: 2rem; align-items: center; padding: 1.2rem 0; border-bottom: 1px solid rgba(250,247,242,0.07); transition: all 0.2s; }
.tarif-ligne:hover { background: rgba(250,247,242,0.04); padding-left: 1rem; padding-right: 1rem; margin: 0 -1rem; }
.tarif-service { font-size: 0.95rem; font-weight: 300; color: rgba(250,247,242,0.85); line-height: 1.4; }
.tarif-service small { display: block; font-size: 0.75rem; color: rgba(250,247,242,0.35); margin-top: 0.15rem; }
.tarif-mois-val { font-family: 'Lora', serif; font-size: 1.05rem; font-weight: 400; color: var(--sable-3); text-align: right; }
.tarif-trim-val { font-size: 0.82rem; font-weight: 300; color: rgba(250,247,242,0.35); text-align: right; }

.tarifs-divider { margin: 3.5rem 0 2rem; display: flex; align-items: center; gap: 1.5rem; }
.tarifs-divider-label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250,247,242,0.25); white-space: nowrap; }
.tarifs-divider-line { flex: 1; height: 1px; background: rgba(250,247,242,0.1); }

.tarifs-specials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(250,247,242,0.08); margin-bottom: 2rem; }
.spec-block { background: var(--terre); padding: 1.8rem 2rem; transition: background 0.3s; }
.spec-block:hover { background: rgba(250,247,242,0.05); }
.spec-block-service { font-size: 0.88rem; font-weight: 300; color: rgba(250,247,242,0.6); margin-bottom: 0.6rem; line-height: 1.5; }
.spec-block-service small { display: block; font-size: 0.75rem; opacity: 0.6; margin-top: 0.2rem; }
.spec-block-prix { font-family: 'Lora', serif; font-size: 1.3rem; font-weight: 400; color: var(--sable-2); }

.famille-note { padding: 1.2rem 1.8rem; background: rgba(212,160,144,0.12); border-left: 2px solid var(--rose-poudre); font-size: 0.85rem; font-weight: 300; color: rgba(250,247,242,0.55); line-height: 1.7; }
.famille-note strong { color: var(--rose-poudre); font-weight: 400; }

/* ── INSCRIPTION ── */
.inscription { background: var(--sable); }
.inscription-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; margin-top: 4rem; align-items: start; }
.inscription-steps { display: flex; flex-direction: column; gap: 0; }
.insc-step { display: flex; gap: 2rem; align-items: flex-start; padding: 1.8rem 0; border-bottom: 1px solid rgba(92,61,46,0.1); }
.insc-step:first-child { padding-top: 0; }
.insc-step:last-child { border-bottom: none; }
.insc-num { font-family: 'Lora', serif; font-size: 2rem; font-weight: 400; color: var(--rose-poudre); line-height: 1; flex-shrink: 0; width: 2.5rem; }
.insc-step-title { font-size: 0.92rem; font-weight: 500; color: var(--encre); margin-bottom: 0.3rem; }
.insc-step-desc { font-size: 0.85rem; font-weight: 300; color: var(--gris-chd); line-height: 1.6; }
.inscription-note { background: var(--sable-2); border-radius: 20px; padding: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.inscription-note-title { font-family: 'Lora', serif; font-size: 1.1rem; font-weight: 400; color: var(--encre); }
.inscription-note-text { font-size: 0.88rem; font-weight: 300; color: var(--gris-chd); line-height: 1.8; }
.inscription-cta { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.8rem 1.8rem; background: var(--terre); color: var(--sable-3); border-radius: 100px; font-size: 0.8rem; font-weight: 400; letter-spacing: 0.06em; text-decoration: none; transition: all 0.3s var(--ease); align-self: flex-start; }
.inscription-cta:hover { background: var(--encre); transform: translateY(-2px); }
.insc-dl { display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 0.8rem; padding: 0.45rem 1rem; border: 1px solid rgba(92,61,46,0.2); border-radius: 100px; font-size: 0.75rem; font-weight: 400; color: var(--terre); text-decoration: none; transition: all 0.25s; }
.insc-dl:hover { background: var(--terre); color: var(--sable-3); border-color: var(--terre); }

/* ── FAQ ── */
.faq { background: var(--sable-2); }
.faq-intro { margin-bottom: 3rem; }
.faq-list { max-width: 780px; }
.faq-item { border-bottom: 1px solid rgba(92,61,46,0.12); }
.faq-q { width: 100%; background: none; border: none; padding: 1.6rem 0; display: flex; justify-content: space-between; align-items: center; gap: 2rem; text-align: left; cursor: pointer; font-family: 'Lora', serif; font-size: 1rem; font-weight: 400; color: var(--encre); }
.faq-q:hover { color: var(--terre); }
.faq-icon { font-size: 1.4rem; font-weight: 300; color: var(--rose-poudre); flex-shrink: 0; transition: transform 0.3s var(--ease); line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner { padding-bottom: 1.6rem; font-size: 0.9rem; font-weight: 300; color: var(--gris-chd); line-height: 1.7; }
.faq-a-inner p + p { margin-top: 0.6rem; }
.faq-niveau-table { width: 100%; border-collapse: collapse; margin-top: 1rem; font-size: 0.85rem; }
.faq-niveau-table th { text-align: left; font-weight: 500; color: var(--terre); padding: 0.5rem 1rem 0.5rem 0; border-bottom: 1px solid rgba(92,61,46,0.15); }
.faq-niveau-table td { padding: 0.5rem 1rem 0.5rem 0; border-bottom: 1px solid rgba(92,61,46,0.06); color: var(--encre); }

/* ── CONTACT ── */
.contact { background: var(--sable-3); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4rem; margin-top: 4rem; align-items: start; }
.contact-map { border-radius: 16px; overflow: hidden; height: 360px; border: 1px solid rgba(92,61,46,0.1); }
.contact-infos { display: flex; flex-direction: column; }
.contact-row { display: flex; gap: 2rem; align-items: flex-start; padding: 2rem 0; border-bottom: 1px solid rgba(92,61,46,0.1); }
.contact-row:first-child { padding-top: 0; }
.contact-row:last-child { border-bottom: none; }
.contact-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rose-poudre); flex-shrink: 0; margin-top: 0.45rem; }
.contact-row-label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gris-chd); margin-bottom: 0.5rem; }
.contact-row-value { font-family: 'Lora', serif; font-size: 1.2rem; font-weight: 400; line-height: 1.4; color: var(--encre); }
.contact-row-value a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(92,61,46,0.2); padding-bottom: 1px; transition: border-color 0.2s, color 0.2s; }
.contact-row-value a:hover { color: var(--terre); border-color: var(--terre); }

.contact-ig-card { background: var(--sable); border-radius: 24px; padding: 2.5rem; border: 1px solid rgba(92,61,46,0.1); }
.ig-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.ig-icon-wrap { width: 46px; height: 46px; border-radius: 14px; background: linear-gradient(135deg, #f09433, #dc2743, #bc1888); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ig-icon-wrap svg { width: 20px; height: 20px; fill: white; }
.ig-handle { font-family: 'Lora', serif; font-size: 1.05rem; font-weight: 400; margin-bottom: 0.1rem; }
.ig-sub { font-size: 0.78rem; font-weight: 300; color: var(--gris-chd); }
.ig-text { font-size: 0.88rem; font-weight: 300; color: var(--gris-chd); line-height: 1.75; margin-bottom: 2rem; }
.ig-btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.85rem 1.8rem; background: var(--terre); color: var(--sable-2); text-decoration: none; font-size: 0.78rem; font-weight: 400; letter-spacing: 0.08em; border-radius: 100px; transition: all 0.3s var(--ease); }
.ig-btn:hover { background: var(--rose-poudre); transform: translateY(-2px); }

/* ── AVIS GOOGLE ── */
.avis-band { background: var(--terre); padding: 5rem 4rem; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 2rem; }
.avis-stars { display: flex; gap: 0.4rem; justify-content: center; }
.avis-star { font-size: 2rem; color: #f5c842; }
.avis-title { font-family: 'Lora', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 400; color: var(--sable-3); line-height: 1.2; }
.avis-title em { color: var(--rose-poudre); font-style: italic; }
.avis-sub { font-size: 0.9rem; font-weight: 300; color: rgba(250,247,242,0.55); max-width: 480px; line-height: 1.7; }
.avis-btn { display: inline-flex; align-items: center; gap: 0.7rem; padding: 1rem 2.2rem; background: var(--sable-3); color: var(--terre); border-radius: 100px; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.06em; text-decoration: none; transition: all 0.3s var(--ease); margin-top: 0.5rem; }
.avis-btn:hover { background: white; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }
.avis-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── FOOTER ── */
footer { background: var(--encre); padding: 2.5rem 4rem; display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.footer-logo { font-family: 'Lora', serif; font-size: 0.95rem; font-weight: 400; color: rgba(250,247,242,0.5); letter-spacing: 0.06em; }
.footer-copy { font-size: 0.75rem; font-weight: 300; color: rgba(250,247,242,0.25); }
.footer-link { font-size: 0.75rem; font-weight: 300; color: rgba(250,247,242,0.25); text-decoration: none; transition: color 0.2s; }
.footer-link:hover { color: rgba(250,247,242,0.6); }

/* ── COOKIES ── */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--encre); color: rgba(250,247,242,0.8); padding: 1.2rem 4rem; display: flex; align-items: center; gap: 2rem; justify-content: space-between; font-size: 0.8rem; font-weight: 300; line-height: 1.6; box-shadow: 0 -4px 24px rgba(0,0,0,0.2); transform: translateY(100%); transition: transform 0.4s var(--ease); }
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner a { color: var(--rose-poudre); text-decoration: none; }
.cookie-banner a:hover { text-decoration: underline; }
.cookie-btns { display: flex; gap: 0.8rem; flex-shrink: 0; }
.cookie-btn { padding: 0.55rem 1.3rem; border-radius: 100px; font-size: 0.75rem; font-weight: 500; cursor: pointer; border: none; transition: all 0.25s; white-space: nowrap; }
.cookie-btn-accept { background: var(--rose-poudre); color: white; }
.cookie-btn-accept:hover { background: var(--terre); }
.cookie-btn-refuse { background: transparent; color: rgba(250,247,242,0.4); border: 1px solid rgba(250,247,242,0.15); }
.cookie-btn-refuse:hover { color: rgba(250,247,242,0.7); border-color: rgba(250,247,242,0.35); }
.map-placeholder { width: 100%; height: 100%; background: var(--sable-2); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; text-align: center; padding: 2rem; }
.map-placeholder p { font-size: 0.82rem; color: var(--gris-chd); line-height: 1.6; }
.map-placeholder a { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1.4rem; background: var(--terre); color: var(--sable-3); border-radius: 100px; font-size: 0.78rem; text-decoration: none; transition: background 0.25s; }
.map-placeholder a:hover { background: var(--encre); }

/* ── MODAL POLITIQUE ── */
.modal-overlay { position: fixed; inset: 0; z-index: 1000; background: rgba(30,26,22,0.7); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; padding: 2rem; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: var(--sable-3); border-radius: 24px; max-width: 680px; width: 100%; max-height: 85vh; overflow-y: auto; padding: 3rem; position: relative; }
.modal-close { position: absolute; top: 1.5rem; right: 1.5rem; width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(92,61,46,0.15); background: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--gris-chd); transition: all 0.2s; }
.modal-close:hover { background: rgba(92,61,46,0.08); }
.modal h2 { font-family: 'Lora', serif; font-size: 1.5rem; font-weight: 400; color: var(--encre); margin-bottom: 0.4rem; }
.modal-date { font-size: 0.72rem; color: var(--gris-chd); margin-bottom: 2rem; }
.modal h3 { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terre); margin: 2rem 0 0.6rem; }
.modal p, .modal li { font-size: 0.88rem; font-weight: 300; color: var(--gris-chd); line-height: 1.8; }
.modal ul { padding-left: 1.2rem; display: flex; flex-direction: column; gap: 0.3rem; }
.modal a { color: var(--terre); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }

/* ── PLANNING ── */
.planning { background: var(--sable); }
.planning-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(92,61,46,0.15);
  align-items: center;
}
.planning-tab {
  padding: 0.9rem 2rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gris-chd);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.25s;
  user-select: none;
}
.planning-tab:hover { color: var(--terre); }
.planning-tab.active { color: var(--terre); border-bottom-color: var(--rose-poudre); }
.planning-print-btn { margin-left: auto; display: flex; align-items: center; gap: 0.45rem; padding: 0.5rem 1.1rem; border: 1px solid rgba(92,61,46,0.2); border-radius: 100px; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.07em; color: var(--gris-chd); cursor: pointer; background: none; transition: all 0.25s; }
.planning-print-btn:hover { border-color: var(--rose-poudre); color: var(--terre); }
.planning-print-btn svg { width: 13px; height: 13px; flex-shrink: 0; }
@page { size: A4 landscape; margin: 1cm; }
@media print {
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
}

.planning-view { display: none; }
.planning-view.active { display: block; }

/* Vue tableau */
.planning-grid {
  display: grid;
  grid-template-columns: 70px repeat(3, 1fr);
  gap: 1px;
  background: rgba(92,61,46,0.1);
  border: 1px solid rgba(92,61,46,0.1);
  overflow: hidden;
  border-radius: 16px;
}
.pg-header {
  background: var(--terre);
  padding: 1rem 1.2rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.7);
  text-align: center;
}
.pg-header.time-col { background: var(--encre); }
.pg-time {
  background: var(--sable-3);
  padding: 0.6rem 0.8rem;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--gris-chd);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-feature-settings: "tnum";
}
.pg-cell {
  background: var(--sable-3);
  padding: 0.5rem;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pg-slot {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
}
.pg-slot.eveil    { background: rgba(212,160,144,0.2); color: #7a4535; border: 1px solid rgba(212,160,144,0.35); }
.pg-slot.init     { background: rgba(139,94,74,0.15);  color: #6b3d2a; border: 1px solid rgba(139,94,74,0.25); }
.pg-slot.clas     { background: rgba(92,61,46,0.12);   color: #4a2e1e; border: 1px solid rgba(92,61,46,0.2); }
.pg-slot.jazz     { background: rgba(155,123,106,0.15);color: #5a3c2c; border: 1px solid rgba(155,123,106,0.25); }
.pg-slot strong { display: block; font-weight: 500; font-size: 0.78rem; }
.pg-slot small { display: block; font-size: 0.68rem; opacity: 0.7; margin-top: 0.1rem; }

/* Vue par jour */
.jours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.jour-card {
  background: var(--sable-3);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(92,61,46,0.08);
}
.jour-card-head {
  background: var(--terre);
  padding: 1.2rem 1.8rem;
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--sable-2);
}
.jour-card-head small {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 300;
  color: rgba(250,247,242,0.5);
  letter-spacing: 0.1em;
  margin-top: 0.1rem;
}
.jour-card-body { padding: 1rem 0; }
.jour-slot {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  border-bottom: 1px solid rgba(92,61,46,0.06);
  transition: background 0.2s;
}
.jour-slot:last-child { border-bottom: none; }
.jour-slot:hover { background: var(--sable); }
.jour-slot-time {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--gris-chd);
  font-feature-settings: "tnum";
  flex-shrink: 0;
  min-width: 90px;
}
.jour-slot-info {}
.jour-slot-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--encre);
  margin-bottom: 0.1rem;
}
.jour-slot-niveau {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--gris-chd);
}
.jour-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.35rem;
  margin-right: 0.2rem;
}
.dot-eveil { background: var(--rose-poudre); }
.dot-init  { background: var(--terre-2); }
.dot-clas  { background: var(--terre); }
.dot-jazz  { background: #9b7b6a; }

/* Vue par discipline */
.disci-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.disci-card {
  background: var(--sable-3);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(92,61,46,0.08);
}
.disci-card-head {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.disci-card:nth-child(1) .disci-card-head { background: rgba(212,160,144,0.2); }
.disci-card:nth-child(2) .disci-card-head { background: rgba(139,94,74,0.15); }
.disci-card:nth-child(3) .disci-card-head { background: rgba(92,61,46,0.12); }
.disci-card:nth-child(4) .disci-card-head { background: rgba(155,123,106,0.15); }
.disci-icon { font-size: 1.8rem; }
.disci-name { font-family: 'Lora', serif; font-size: 1.3rem; font-weight: 400; }
.disci-age { font-size: 0.72rem; font-weight: 400; color: var(--gris-chd); margin-top: 0.1rem; letter-spacing: 0.05em; }
.disci-card-body { padding: 0.5rem 0 1rem; }
.disci-slot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 0.75rem 2rem;
  border-bottom: 1px solid rgba(92,61,46,0.06);
}
.disci-slot:last-child { border-bottom: none; }
.disci-slot-niveau { font-size: 0.85rem; font-weight: 400; color: var(--encre); }
.disci-slot-time { font-size: 0.78rem; font-weight: 300; color: var(--gris-chd); white-space: nowrap; font-feature-settings: "tnum"; }

/* ── BURGER MENU ── */
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 200; }
.nav-burger span { display: block; width: 24px; height: 2px; background: rgba(250,247,242,0.85); border-radius: 2px; transition: all 0.3s var(--ease); }
nav.scrolled .nav-burger span { background: var(--encre); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: 150; background: var(--encre); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; transform: translateX(100%); transition: transform 0.4s var(--ease); }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: 'Lora', serif; font-size: 1.8rem; font-weight: 400; color: rgba(250,247,242,0.7); text-decoration: none; padding: 0.6rem 2rem; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--rose-poudre); }
.mobile-menu .mobile-cta { margin-top: 1.5rem; padding: 0.9rem 2.5rem; border: 1px solid rgba(250,247,242,0.2); border-radius: 100px; font-size: 1rem; color: rgba(250,247,242,0.85) !important; }

/* ── RESPONSIVE PLANNING PAR JOUR ── */
@media (max-width: 1200px) {
  .jours-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── DESKTOP : bandeau masqué, actualité dans le hero ── */
@media (min-width: 1101px) {
  .annonce { display: none; }
}

/* ── RESPONSIVE TABLETTE ── */
@media (max-width: 1100px) {
  nav, nav.scrolled { padding-left: 2rem; padding-right: 2rem; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { min-height: 75vh; padding: 9rem 2rem 4rem; }
  .s { padding: 5rem 2rem; }
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { display: none; }
  .tarifs-intro { grid-template-columns: 1fr; gap: 2rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-map { height: 280px; }
  .inscription-layout { grid-template-columns: 1fr; gap: 3rem; }
  .cours-grid { grid-template-columns: 1fr 1fr; }
  .tarifs-col-head, .tarif-ligne { grid-template-columns: 1fr 90px; }
  .tarifs-col-head span:last-child, .tarif-trim-val { display: none; }
  .stats-band { flex-wrap: wrap; }
  .stat-item { min-width: 50%; border-bottom: 1px solid rgba(92,61,46,0.1); }
  footer { flex-direction: column; text-align: center; padding: 2rem; }
  .avis-band { padding: 4rem 2rem; }
  .cookie-banner { padding: 1.2rem 2rem; }
  .modal { padding: 2.5rem; }
}

/* ── RESPONSIVE MOBILE ── */
@media (max-width: 640px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  /* Hero */
  .hero-left { padding: 3rem 1.5rem 3rem; }
  .hero-title { font-size: clamp(2.6rem, 11vw, 3.5rem); }
  .hero-logo { height: 250px; }
  .hero-desc { font-size: 0.88rem; }

  /* Annonce */
  .annonce-large { padding: 1rem 1.2rem; }
  .annonce-dates { flex-direction: column; gap: 0.3rem; }
  .annonce-sep { display: none; }

  /* Stats */
  .stat-item { min-width: 100%; }

  /* Cours */
  .cours-grid { grid-template-columns: 1fr; }
  .cours-intro { flex-direction: column; align-items: flex-start; }

  /* Planning */
  .planning-tabs { overflow-x: auto; white-space: nowrap; }
  #view-tableau { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .planning-grid { min-width: 460px; }
  .planning-print-btn { display: none; }
  .jours-grid { grid-template-columns: 1fr; }
  .disci-grid { grid-template-columns: 1fr; }

  /* Tarifs */
  .tarifs-specials { grid-template-columns: 1fr; }
  .spec-block { padding: 1.2rem 1.5rem; }

  /* Inscription */
  .insc-step { gap: 1.2rem; }
  .insc-num { font-size: 1.5rem; width: 2rem; }
  .inscription-note { padding: 1.8rem; }

  /* FAQ */
  .faq-list { max-width: 100%; }
  .faq-q { font-size: 0.9rem; }

  /* Contact */
  .contact-map { height: 220px; }

  /* Avis */
  .avis-band { padding: 3.5rem 1.5rem; gap: 1.5rem; }
  .avis-title { font-size: 1.5rem; }
  .avis-btn { padding: 0.9rem 1.8rem; font-size: 0.8rem; }

  /* Cookie banner */
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.2rem 1.5rem; }
  .cookie-btns { width: 100%; justify-content: flex-end; }

  /* Modal */
  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal { border-radius: 24px 24px 0 0; max-height: 90vh; padding: 2rem 1.5rem; }

  /* Sections */
  .s { padding: 4rem 1.5rem; }
  footer { padding: 1.8rem 1.5rem; gap: 1rem; }
}

/* ── RESPONSIVE PETIT MOBILE ── */
@media (max-width: 400px) {
  .hero-title { font-size: 2.4rem; }
  .titre { font-size: clamp(1.8rem, 9vw, 2.5rem); }
  .mobile-menu a { font-size: 1.5rem; }
  .stat-num { font-size: 2.2rem; }
}
