:root {
  --gold: #cf7c0f;
  --gold-light: #e49b2b;
  --gold-pale: #fff3dd;
  --blue: #20436e;
  --blue-deep: #102a49;
  --red: #781108;
  --red-pale: #f7e8e5;
  --silver: #d8dee6;
  --cream: #faf6ee;
  --paper: #fffdf9;
  --ink: #17273c;
  --muted: #606a77;
  --line: rgba(32, 67, 110, .16);
  --shadow: 0 22px 60px rgba(16, 42, 73, .14);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-soft { background: var(--cream); }
.section-sage { background: linear-gradient(135deg, var(--blue-deep), var(--blue)); color: white; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: white;
  border-radius: 8px;
}
.skip-link:focus { transform: none; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 1px solid rgba(207,124,15,.42);
  background: linear-gradient(180deg, rgba(7,24,43,.72), rgba(7,24,43,0));
}
.nav-wrap { min-height: 164px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { align-self: flex-start; width: 132px; height: 258px; overflow: visible; display: grid; place-items: start center; text-decoration: none; padding-top: 12px; }
.brand img { width: 122px; height: auto; margin: 0; filter: drop-shadow(0 9px 18px rgba(0,0,0,.32)); }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  color: white;
  text-decoration: none;
  font-size: .93rem;
  font-weight: 700;
  letter-spacing: .02em;
  position: relative;
}
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 12px 19px; border: 1px solid var(--gold); border-radius: 999px; background: rgba(120,17,8,.14); }
.nav-cta:hover { background: var(--gold); color: var(--blue-deep); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 10px; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: white; margin: 6px 0; }

.hero { position: relative; min-height: 790px; color: white; display: grid; align-items: center; overflow: hidden; }
.hero-media {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image, url("assets/hatha.webp")), url("assets/hatha.webp");
  background-position: var(--hero-position, center 35%), center 35%;
  background-size: cover, cover;
  background-repeat: no-repeat;
  transform: scale(1.04);
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,42,73,.94) 0%, rgba(16,42,73,.76) 47%, rgba(16,42,73,.24) 100%), linear-gradient(0deg, rgba(8,24,43,.36), transparent 55%); }
.hero-content { position: relative; z-index: 1; padding-top: 300px; }
.eyebrow, .section-kicker { margin: 0 0 18px; text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 800; }
.eyebrow { color: var(--silver); }
.hero h1, .section h2, .contact-section h2, .quote-section p, .testimonial-section p {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
.hero h1 { margin: 0; max-width: 760px; font-size: clamp(3.5rem, 7vw, 6.7rem); line-height: .97; letter-spacing: -.045em; }
.hero-lead { max-width: 670px; margin: 30px 0 0; font-size: 1.18rem; color: rgba(255,255,255,.88); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 0 24px; border-radius: 999px; border: 1px solid transparent; text-decoration: none; font-weight: 800; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--blue-deep); box-shadow: 0 12px 28px rgba(207,124,15,.22); }
.button-primary:hover { background: var(--gold-light); }
.button-light { background: rgba(255,255,255,.08); color: white; border-color: rgba(255,255,255,.62); backdrop-filter: blur(8px); }
.button-light:hover { background: white; color: var(--blue); }
.button-outline { border-color: rgba(255,255,255,.45); color: white; }
.button-outline:hover { background: white; color: var(--blue); }
.button-full { width: 100%; }
.hero-notes { display: flex; gap: 0; margin-top: 62px; flex-wrap: wrap; }
.hero-notes span { padding: 0 24px; border-left: 1px solid rgba(255,255,255,.3); color: rgba(255,255,255,.84); font-size: .9rem; }
.hero-notes span:first-child { padding-left: 0; border-left: 0; }

.intro { border-bottom: 1px solid var(--line); }
.intro-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 80px; align-items: start; }
.section-kicker { color: var(--blue); display: flex; align-items: center; gap: 10px; }
.section-kicker::before { content: ""; width: 24px; height: 3px; border-radius: 99px; background: linear-gradient(90deg, var(--red), var(--gold)); }
.section h2, .contact-section h2 { margin: 0; font-size: clamp(2.5rem, 5vw, 4.6rem); line-height: 1.02; letter-spacing: -.035em; color: var(--blue-deep); }
.intro-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; color: var(--muted); font-size: 1.05rem; }
.intro-copy p { margin: 0; }

.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; margin-bottom: 54px; }
.section-heading > p { margin: 0; color: var(--muted); max-width: 480px; }
.section-heading-light h2, .section-heading-light .section-kicker { color: white; }
.section-heading-light .section-kicker::before, .contact-section .section-kicker::before { background: linear-gradient(90deg, var(--gold), var(--red)); }
.section-heading-light > p { color: rgba(255,255,255,.78); }

.course-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.course-card { background: var(--paper); border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 1px 0 var(--line); display: grid; grid-template-columns: 44% 56%; min-height: 330px; }
.course-card-wide { grid-column: span 2; grid-template-columns: 56% 44%; min-height: 390px; }
.course-card img { width: 100%; height: 100%; object-fit: cover; }
.course-card-body { padding: 34px; display: flex; flex-direction: column; align-items: flex-start; }
.course-number { margin: 0 0 34px; font-size: .78rem; letter-spacing: .14em; color: var(--blue); font-weight: 800; }
.course-card h3 { margin: 0 0 14px; font-family: Georgia, "Times New Roman", serif; font-size: 2rem; line-height: 1.1; color: var(--blue); font-weight: 400; }
.course-card p:not(.course-number) { margin: 0 0 26px; color: var(--muted); }
.course-card a { margin-top: auto; font-weight: 800; text-decoration: none; color: var(--blue); }
.course-card a span { display: inline-block; transition: transform .2s ease; }
.course-card a:hover span { transform: translateX(5px); }

.quote-section { padding: 100px 0; background: linear-gradient(120deg, var(--blue-deep), #173a62); color: white; border-top: 5px solid var(--gold); }
.quote-wrap { display: grid; grid-template-columns: 120px 1fr; gap: 30px; align-items: start; }
.quote-mark { color: var(--gold); font-family: Georgia, serif; font-size: 9rem; line-height: .7; }
.quote-section blockquote { margin: 0; max-width: 900px; }
.quote-section p { margin: 0; font-size: clamp(2rem, 4vw, 4rem); line-height: 1.12; }
.quote-section footer { margin-top: 26px; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .13em; font-size: .8rem; }

.schedule-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.day-card { grid-column: span 4; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px; background: white; }
.day-card:nth-child(4), .day-card:nth-child(5) { grid-column: span 6; }
.day-card-accent { background: linear-gradient(135deg, var(--gold-pale), var(--red-pale)); border-color: rgba(120,17,8,.18); }
.day-head { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); padding-bottom: 18px; margin-bottom: 16px; }
.day-head > span { color: var(--blue); font-size: .78rem; text-transform: uppercase; letter-spacing: .15em; font-weight: 800; }
.day-card h3 { margin: 0; font-family: Georgia, serif; color: var(--blue); font-size: 1.7rem; font-weight: 400; }
.day-card ul { list-style: none; padding: 0; margin: 0; }
.day-card li { display: grid; gap: 4px; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.day-card li:last-child { border-bottom: 0; }
.day-card time { color: var(--blue); font-weight: 800; font-size: .86rem; }
.day-card small { color: var(--muted); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card { position: relative; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-md); padding: 36px; display: flex; flex-direction: column; }
.price-card-featured { background: var(--paper); color: var(--ink); transform: translateY(-14px); box-shadow: var(--shadow); }
.price-badge { position: absolute; top: 18px; right: 18px; background: var(--red); color: white; padding: 7px 11px; border-radius: 999px; font-size: .7rem; text-transform: uppercase; letter-spacing: .09em; font-weight: 800; }
.price-label { margin: 0; text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; font-weight: 800; }
.price { margin: 32px 0 26px; display: flex; align-items: end; gap: 10px; }
.price strong { font-family: Georgia, serif; font-size: 3.8rem; font-weight: 400; line-height: .9; }
.price span { color: rgba(255,255,255,.65); }
.price-card-featured .price span { color: var(--muted); }
.price-card ul { padding-left: 19px; margin: 0 0 34px; color: rgba(255,255,255,.78); }
.price-card-featured ul { color: var(--muted); }
.price-card .button { margin-top: auto; }
.price-card-featured .button-primary { color: var(--blue-deep); }
.extra-prices { margin-top: 38px; border-top: 1px solid rgba(255,255,255,.26); display: grid; grid-template-columns: repeat(2, 1fr); }
.extra-prices div { display: flex; justify-content: space-between; gap: 20px; padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,.17); }
.extra-prices div:nth-child(odd) { padding-right: 28px; }
.extra-prices div:nth-child(even) { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.17); }
.extra-prices span { color: rgba(255,255,255,.74); text-align: right; }

.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: center; }
.about-photo-wrap { position: relative; min-height: 620px; }
.about-photo { position: absolute; inset: 0 18% 12% 0; width: 82%; height: 88%; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.about-pattern { position: absolute; width: 43%; height: 44%; right: 0; bottom: 0; object-fit: cover; border: 12px solid var(--paper); border-radius: 50%; }
.about-copy p { color: var(--muted); }
.credentials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.credentials span { padding: 9px 14px; background: var(--gold-pale); color: var(--blue); border-radius: 999px; font-weight: 700; font-size: .86rem; }

.testimonial-section { padding: 0 0 112px; }
.testimonial-card { background: var(--cream); border-radius: var(--radius-lg); padding: 68px; display: grid; grid-template-columns: 80px 1fr; gap: 30px; }
.testimonial-symbol { font-size: 3rem; color: var(--red); }
.testimonial-card blockquote { margin: 0; }
.testimonial-card p { margin: 0; font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.2; color: var(--blue); }
.testimonial-card footer { margin-top: 24px; color: var(--muted); font-weight: 800; }

.pro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pro-card { padding: 34px; background: var(--paper); border-radius: var(--radius-md); border: 1px solid var(--line); }
.pro-card > span { color: var(--blue); font-size: .78rem; letter-spacing: .15em; font-weight: 800; }
.pro-card h3 { margin: 34px 0 13px; font-family: Georgia, serif; font-size: 1.8rem; color: var(--blue); font-weight: 400; }
.pro-card p { margin: 0; color: var(--muted); }

.retreats-section { background: var(--paper); }
.retreats-grid { display: grid; grid-template-columns: 1fr .78fr; gap: 90px; align-items: center; }
.retreats-grid > div:first-child > p:not(.section-kicker) { color: var(--muted); max-width: 640px; margin: 24px 0 30px; }
.retreat-card { background: var(--cream); border-radius: var(--radius-lg); padding: 38px; text-align: center; }
.retreat-card img { width: min(320px, 85%); margin: 0 auto 16px; }
.retreat-card p { color: var(--muted); margin: 0; }

.contact-section { padding: 112px 0; background: linear-gradient(145deg, #0c213a, var(--blue)); color: white; border-top: 5px solid var(--red); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 84px; align-items: start; }
.contact-section .section-kicker, .contact-section h2 { color: white; }
.contact-copy > p:not(.section-kicker) { color: rgba(255,255,255,.72); max-width: 520px; }
.contact-list { display: grid; gap: 12px; margin: 34px 0; }
.contact-list a { display: flex; gap: 16px; align-items: center; color: white; text-decoration: none; }
.contact-icon { width: 44px; height: 44px; flex: 0 0 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.28); display: grid; place-items: center; color: var(--gold); font-weight: 900; }
.contact-list small { display: block; color: rgba(255,255,255,.54); text-transform: uppercase; letter-spacing: .1em; font-size: .69rem; }
.access-box { margin-top: 32px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.2); }
.access-box p { color: rgba(255,255,255,.65); margin-bottom: 0; }
.contact-form { background: var(--paper); color: var(--ink); padding: 42px; border-radius: var(--radius-lg); border-top: 6px solid var(--gold); }
.form-heading { margin-bottom: 30px; }
.form-heading span { font-family: Georgia, serif; font-size: 2rem; color: var(--blue); }
.form-heading p { margin: 4px 0 0; color: var(--muted); }
.contact-form label { display: block; margin: 16px 0 7px; font-weight: 800; font-size: .86rem; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); background: white; color: var(--ink); border-radius: 12px; padding: 14px 15px; outline: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(207,124,15,.18); }
.contact-form textarea { resize: vertical; min-height: 150px; }
.contact-form .button { margin-top: 22px; border: 0; }
.form-status { min-height: 24px; margin: 12px 0 0; color: var(--blue); font-weight: 700; }

.site-footer { background: #08182b; color: white; padding: 70px 0 26px; border-top: 1px solid rgba(207,124,15,.34); }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 50px; }
.footer-brand img { width: 116px; height: auto; object-fit: contain; filter: drop-shadow(0 7px 15px rgba(0,0,0,.32)); }
.footer-brand p, .footer-grid p { color: rgba(255,255,255,.56); }
.footer-grid h2 { margin: 0 0 20px; font-size: .76rem; text-transform: uppercase; letter-spacing: .15em; }
.footer-grid a { display: block; margin: 10px 0; color: rgba(255,255,255,.78); text-decoration: none; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 28px; margin-top: 44px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.48); font-size: .84rem; }
.footer-bottom a { color: rgba(255,255,255,.72); text-decoration: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .site-header { position: absolute; }
  .menu-toggle { display: block; position: relative; z-index: 40; }
  .main-nav { position: fixed; inset: 0 0 auto auto; width: min(86vw, 390px); height: 100vh; padding: 120px 34px 40px; background: var(--blue-deep); flex-direction: column; align-items: stretch; transform: translateX(100%); transition: transform .28s ease; box-shadow: -20px 0 50px rgba(0,0,0,.25); }
  .main-nav.is-open { transform: none; }
  .main-nav a { font-size: 1.1rem; padding: 8px 0; }
  .nav-cta { text-align: center; margin-top: 12px; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .menu-toggle span { transition: transform .2s ease, opacity .2s ease; }

  .hero { min-height: 730px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(16,42,73,.92), rgba(16,42,73,.58)); }
  .intro-grid, .section-heading, .about-grid, .retreats-grid, .contact-grid { grid-template-columns: 1fr; gap: 42px; }
  .intro-copy { max-width: 760px; }
  .section-heading { align-items: start; }
  .course-card, .course-card-wide { grid-column: span 1; grid-template-columns: 1fr; min-height: 0; }
  .course-card img { aspect-ratio: 16 / 7; height: auto; }
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
  .day-card, .day-card:nth-child(4), .day-card:nth-child(5) { grid-column: span 1; }
  .day-card:last-child { grid-column: span 2; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card-featured { transform: none; order: -1; }
  .about-photo-wrap { min-height: 560px; }
  .pro-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .nav-wrap { min-height: 126px; }
  .brand { width: 82px; height: 164px; padding-top: 8px; }
  .brand img { width: 78px; }
  .hero { min-height: 710px; }
  .hero-media { background-position: var(--hero-position-mobile, 61% center), 61% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(16,42,73,.95), rgba(16,42,73,.72)); }
  .hero-content { padding-top: 185px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.7rem); }
  .hero-lead { font-size: 1rem; }
  .hero-notes span { padding: 0 13px; font-size: .78rem; }
  .intro-copy { grid-template-columns: 1fr; gap: 14px; }
  .course-grid { grid-template-columns: 1fr; }
  .course-card-body { padding: 28px; }
  .course-number { margin-bottom: 22px; }
  .quote-section { padding: 72px 0; }
  .quote-wrap { grid-template-columns: 1fr; gap: 0; }
  .quote-mark { font-size: 6rem; }
  .schedule-grid { grid-template-columns: 1fr; }
  .day-card, .day-card:last-child { grid-column: span 1; }
  .extra-prices { grid-template-columns: 1fr; }
  .extra-prices div:nth-child(odd), .extra-prices div:nth-child(even) { padding-inline: 0; border-left: 0; }
  .about-photo-wrap { min-height: 430px; }
  .testimonial-section { padding-bottom: 78px; }
  .testimonial-card { padding: 34px; grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   IDENTITÉ INA YOGA V2
   Palette extraite directement du logo officiel fourni
   Orange #CF7C0F | Bleu #20436E | Bordeaux #781108 | Argent #D8DEE6
   ========================================================= */
:root {
  --gold: #cf7c0f;
  --gold-light: #e7a02e;
  --gold-pale: #fff5e5;
  --blue: #20436e;
  --blue-deep: #102a49;
  --red: #781108;
  --red-pale: #f8ebe9;
  --silver: #d8dee6;
  --cream: #f6f8fb;
  --paper: #ffffff;
  --ink: #172b45;
  --muted: #59697c;
  --line: rgba(32, 67, 110, .17);
  --shadow: 0 24px 64px rgba(16, 42, 73, .16);
}

body {
  background:
    radial-gradient(circle at 100% 0, rgba(207,124,15,.06), transparent 27rem),
    var(--paper);
}

.section-soft {
  background: linear-gradient(145deg, #f8fafc, #fff7ea);
}

.section-brand {
  background:
    radial-gradient(circle at 8% 18%, rgba(207,124,15,.22), transparent 22rem),
    radial-gradient(circle at 96% 90%, rgba(120,17,8,.18), transparent 25rem),
    linear-gradient(135deg, #102a49 0%, #20436e 64%, #173554 100%);
  color: white;
  border-block: 5px solid var(--gold);
}

.site-header {
  border-bottom-color: rgba(207,124,15,.5);
  background: linear-gradient(180deg, rgba(8,26,48,.9), rgba(8,26,48,.12), transparent);
}

.brand {
  width: 122px;
  height: 222px;
  padding: 10px 12px 16px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(216,222,230,.92);
  border-top: 0;
  border-radius: 0 0 26px 26px;
  box-shadow: 0 16px 42px rgba(5,22,42,.22);
  backdrop-filter: blur(10px);
}
.brand img {
  width: 94px;
  filter: none;
}

.nav-cta {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(207,124,15,.22), rgba(120,17,8,.28));
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--blue-deep);
}

.hero-overlay {
  background:
    linear-gradient(90deg,
      rgba(10,32,57,.78) 0%,
      rgba(16,42,73,.62) 34%,
      rgba(16,42,73,.30) 58%,
      rgba(16,42,73,.08) 82%,
      rgba(16,42,73,.03) 100%),
    linear-gradient(0deg, rgba(10,32,57,.18), transparent 46%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--red) 0 19%, var(--gold) 19% 76%, var(--silver) 76% 100%);
  z-index: 2;
}
.eyebrow { color: #eef2f7; }

.button-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #102a49;
  box-shadow: 0 12px 30px rgba(207,124,15,.3);
}
.button-primary:hover { background: #f0ad3d; }

.section-kicker { color: var(--blue); }
.section-kicker::before {
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0 33%, var(--gold) 33% 100%);
}

.course-card {
  border: 1px solid rgba(32,67,110,.12);
  box-shadow: 0 16px 45px rgba(32,67,110,.08);
}
.course-card:nth-child(3n+1) { border-top: 5px solid var(--gold); }
.course-card:nth-child(3n+2) { border-top: 5px solid var(--blue); }
.course-card:nth-child(3n) { border-top: 5px solid var(--red); }
.course-number, .course-card h3, .course-card a { color: var(--blue); }

.quote-section {
  background:
    radial-gradient(circle at 90% 15%, rgba(207,124,15,.22), transparent 24rem),
    linear-gradient(120deg, #102a49, #20436e);
  border-top-color: var(--red);
  border-bottom: 5px solid var(--gold);
}

.day-card { box-shadow: 0 12px 36px rgba(32,67,110,.07); }
.day-card-accent {
  background: linear-gradient(135deg, var(--gold-pale), var(--red-pale));
  border-color: rgba(120,17,8,.26);
}

.price-badge { background: var(--red); }
.price-card-featured { border-top: 6px solid var(--gold); }

.about-pattern { border-color: white; }
.credentials span {
  background: linear-gradient(135deg, var(--gold-pale), #f7f9fc);
  border: 1px solid rgba(207,124,15,.22);
  color: var(--blue);
}

.testimonial-card {
  background: linear-gradient(135deg, #fff7e9, #f5f8fc);
  border-left: 7px solid var(--gold);
  border-right: 2px solid var(--silver);
}
.testimonial-symbol { color: var(--red); }

.pro-card {
  border-top: 5px solid var(--blue);
  box-shadow: 0 14px 40px rgba(32,67,110,.07);
}
.pro-card:nth-child(2) { border-top-color: var(--gold); }
.pro-card:nth-child(3) { border-top-color: var(--red); }

.retreat-card {
  border: 1px solid rgba(32,67,110,.13);
  border-top: 6px solid var(--gold);
}

.contact-section {
  background:
    radial-gradient(circle at 85% 10%, rgba(207,124,15,.2), transparent 25rem),
    linear-gradient(145deg, #0c213a, #20436e);
  border-top-color: var(--red);
}
.contact-form {
  border-top-color: var(--gold);
  border-bottom: 5px solid var(--red);
}

.site-footer {
  background: #0a2039;
  border-top: 6px solid var(--gold);
}
.footer-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-brand img {
  width: 130px;
  padding: 14px 18px;
  background: #fff;
  border-radius: 20px;
  filter: none;
  box-shadow: 0 14px 36px rgba(0,0,0,.2);
}

@media (max-width: 680px) {
  .brand {
    width: 88px;
    height: 158px;
    padding: 8px 10px 12px;
    border-radius: 0 0 20px 20px;
  }
  .brand img { width: 66px; }
}


/* =========================================================
   CONTENUS CLIENT V4 - PRATIQUES, GALERIE ET ESPACE PRO
   ========================================================= */
.practice-details { background: #fff; }
.practice-details .section-heading { margin-bottom: 28px; }
.practice-block {
  display: grid;
  grid-template-columns: .34fr 1fr;
  gap: 52px;
  padding: 52px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 40px;
}
.practice-title { display: flex; gap: 18px; align-items: flex-start; }
.practice-title > span {
  min-width: 46px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .15em;
  padding-top: 9px;
}
.practice-title h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--blue);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1.05;
  font-weight: 400;
}
.practice-copy { color: var(--muted); font-size: 1.02rem; max-width: 800px; }
.practice-copy p:first-child { margin-top: 0; }
.practice-copy blockquote {
  margin: 26px 0;
  padding: 24px 28px;
  color: var(--blue);
  background: linear-gradient(135deg, var(--gold-pale), #f7f9fc);
  border-left: 5px solid var(--red);
  border-radius: 0 18px 18px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.check-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px; }
.check-list li { position: relative; padding-left: 27px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 900; }
.practice-photo-block { grid-template-columns: .34fr 1fr; }
.practice-photo-block .chair-gallery { grid-column: 1 / -1; }
.chair-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 10px; }
.chair-gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius-md); background: var(--cream); box-shadow: 0 14px 38px rgba(32,67,110,.1); }
.chair-gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.chair-gallery figcaption { padding: 13px 16px; color: var(--blue); font-weight: 800; font-size: .84rem; }
.pro-grid-detailed .pro-card { display: flex; flex-direction: column; }
.pro-card ul { margin: 24px 0 0; padding-left: 19px; color: var(--muted); }
.pro-card li { margin: 8px 0; }
.service-area {
  margin-top: 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px 26px;
  padding: 26px 30px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: white;
  border-bottom: 5px solid var(--gold);
}
.service-area strong { color: var(--gold-light); text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; }
.service-area span { color: rgba(255,255,255,.82); }
.service-area .button { min-height: 46px; }

@media (max-width: 980px) {
  .practice-block, .practice-photo-block { grid-template-columns: 1fr; gap: 24px; }
  .practice-photo-block .chair-gallery { grid-column: auto; }
  .service-area { grid-template-columns: 1fr; justify-items: start; }
}
@media (max-width: 680px) {
  .practice-block { padding: 40px 0; }
  .practice-title { gap: 10px; }
  .practice-title > span { min-width: 36px; }
  .chair-gallery { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .service-area { padding: 24px; }
}

/* =========================================================
   V7 - MENU COMPACT AVEC PETIT LOGO PENDANT LE DÉFILEMENT
   ========================================================= */
.site-header,
.site-header .nav-wrap,
.site-header .brand,
.site-header .brand img,
.site-header .main-nav {
  transition: min-height .25s ease, height .25s ease, width .25s ease,
              padding .25s ease, opacity .2s ease, background .25s ease,
              box-shadow .25s ease, border-color .25s ease,
              transform .25s ease, margin .25s ease;
}

.site-header.is-scrolled {
  position: fixed;
  inset: 0 0 auto;
  background: rgba(10, 32, 57, .96);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 12px 32px rgba(5, 22, 42, .22);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled .nav-wrap {
  min-height: 78px;
  justify-content: space-between;
  gap: 22px;
}

.site-header.is-scrolled .brand {
  width: 62px;
  height: 62px;
  padding: 0;
  align-self: center;
  flex: 0 0 62px;
  opacity: 1;
  overflow: visible;
  pointer-events: auto;
}

.site-header.is-scrolled .brand img {
  width: auto;
  height: 58px;
  max-width: 34px;
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(0,0,0,.22));
}

.site-header.is-scrolled .main-nav {
  margin-left: auto;
}

/* prix : garde le montant sur une seule ligne et stabilise l'alignement */
.price {
  margin: 32px 0 26px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 12px 14px;
}

.price strong {
  font-family: Georgia, serif;
  font-size: 3.8rem;
  font-weight: 400;
  line-height: .92;
  white-space: nowrap;
  display: inline-block;
}

.price span {
  color: rgba(255,255,255,.65);
  align-self: center;
}

.price-card-featured .price span { color: var(--muted); }

/* évite que le logo de départ ne recouvre le contenu du hero */
@media (max-width: 980px) {
  .hero-content { padding-top: 230px; }
}

section[id],
article[id] {
  scroll-margin-top: 92px;
}

@media (max-width: 980px) {
  .site-header.is-scrolled .nav-wrap {
    min-height: 72px;
    justify-content: space-between;
  }

  .site-header.is-scrolled .brand {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  .site-header.is-scrolled .brand img {
    width: auto;
    height: 50px;
    max-width: 30px;
  }

  .site-header.is-scrolled .menu-toggle {
    margin-left: auto;
  }
}

@media (max-width: 680px) {
  .hero-content { padding-top: 185px; }

  .price {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 8px;
  }

  .price strong {
    font-size: 3.3rem;
  }
}


/* =========================================================
   V10 - ATELIERS MENSUELS ET PROGRAMME DU MOIS
   ========================================================= */
.day-card-workshops {
  display: flex;
  flex-direction: column;
}
.day-card-workshops .day-head {
  align-items: flex-start;
}
.day-card-workshops .day-head h3 {
  max-width: 15rem;
}
.day-intro {
  margin: -2px 0 12px;
  color: var(--muted);
  font-size: .92rem;
}
.day-card-accent .day-intro {
  color: var(--blue);
}
.day-program-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--blue);
  text-decoration: none;
  font-weight: 800;
}
.day-program-link span {
  transition: transform .2s ease;
}
.day-program-link:hover span,
.day-program-link:focus-visible span {
  transform: translateX(5px);
}

.monthly-program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.monthly-program-card {
  position: relative;
  min-height: 330px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 0 rgba(32,67,110,.05);
}
.monthly-program-card-featured {
  background: linear-gradient(145deg, var(--blue-deep), var(--blue));
  color: white;
  border-color: rgba(207,124,15,.6);
  box-shadow: var(--shadow);
}
.monthly-program-duration {
  align-self: flex-start;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--gold-pale);
  color: var(--red);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.monthly-program-card-featured .monthly-program-duration {
  background: var(--gold);
  color: var(--blue-deep);
}
.monthly-program-card h3 {
  margin: 34px 0 14px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  line-height: 1.08;
  font-weight: 400;
}
.monthly-program-card-featured h3 {
  color: white;
}
.monthly-program-card p {
  margin: 0 0 26px;
  color: var(--muted);
}
.monthly-program-card-featured p {
  color: rgba(255,255,255,.78);
}
.monthly-program-card time {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--blue);
  font-weight: 800;
  font-size: .88rem;
}
.monthly-program-card-featured time {
  color: var(--gold-light);
  border-top-color: rgba(255,255,255,.2);
}
.monthly-program-footer {
  margin-top: 28px;
  padding: 28px 30px;
  border-radius: var(--radius-md);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.monthly-program-footer strong {
  color: var(--blue);
  font-size: 1.05rem;
}
.monthly-program-footer p {
  margin: 5px 0 0;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .monthly-program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .monthly-program-grid {
    grid-template-columns: 1fr;
  }
  .monthly-program-card {
    min-height: 0;
  }
  .monthly-program-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}




/* =========================================================
   V12 - HERO PC PLUS COMPACT POUR AFFICHER LES BOUTONS
   ========================================================= */
@media (min-width: 981px) {
  .nav-wrap {
    min-height: 148px;
  }

  .brand {
    width: 104px;
    height: 188px;
    padding: 8px 10px 12px;
    border-radius: 0 0 22px 22px;
  }

  .brand img {
    width: 80px;
  }

  .hero {
    min-height: 740px;
  }

  .hero-content {
    padding-top: 220px;
  }

  .hero h1 {
    max-width: 700px;
    font-size: clamp(3.1rem, 5.6vw, 5.6rem);
  }

  .hero-lead {
    max-width: 640px;
    margin-top: 22px;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .hero-notes {
    margin-top: 40px;
  }
}

/* =========================================================
   V11 - PHOTO HERO PILOTÉE DEPUIS INDEX.HTML
   --hero-image : fichier choisi
   --hero-position : cadrage ordinateur
   --hero-position-mobile : cadrage téléphone
   ========================================================= */


/* =========================================================
   V13 - PHOTO 1 VALIDÉE ET VOILE BLEU ALLÉGÉ
   ========================================================= */
.course-card img[src*="parents-enfants"] {
  object-position: center 45%;
}

@media (max-width: 680px) {
  .hero-overlay {
    background:
      linear-gradient(90deg,
        rgba(10,32,57,.84) 0%,
        rgba(16,42,73,.66) 58%,
        rgba(16,42,73,.22) 100%),
      linear-gradient(0deg, rgba(10,32,57,.16), transparent 50%);
  }
}

/* Site dynamique : avis et programmes illustrés */
.reviews-section{background:linear-gradient(145deg,#fff,#faf6ee)}
.reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.review-card{background:white;border:1px solid var(--line);border-top:5px solid var(--gold);border-radius:var(--radius-md);padding:30px;box-shadow:0 16px 42px rgba(16,42,73,.08);display:flex;flex-direction:column;min-height:260px}
.review-stars{color:var(--gold);letter-spacing:.12em;font-size:1.15rem}.review-card>p{font-family:Georgia,serif;color:var(--blue);font-size:1.25rem;line-height:1.45}.review-card footer{margin-top:auto;display:flex;flex-direction:column}.review-card footer span{color:var(--muted);font-size:.82rem}.reviews-action{text-align:center;margin-top:36px}
.program-image{width:100%;aspect-ratio:16/10;object-fit:cover;border-radius:16px;margin-bottom:18px}
.form-status{min-height:1.5em}.contact-form button:disabled{opacity:.6;cursor:wait}
@media(max-width:980px){.reviews-grid{grid-template-columns:1fr 1fr}}
@media(max-width:680px){.reviews-grid{grid-template-columns:1fr}}
.program-gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-top:18px}.program-gallery figure{margin:0}.program-gallery img{width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:10px}.program-gallery figcaption{font-size:.72rem;color:var(--muted);margin-top:4px}@media(max-width:680px){.program-gallery{grid-template-columns:repeat(2,1fr)}}
.hp-field{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important}

/* Contenus enrichis gérés depuis l'administration */
.rich-content{min-width:0}.rich-content>:first-child{margin-top:0}.rich-content>:last-child{margin-bottom:0}.rich-content p{margin:.45em 0 1em}.rich-content ul,.rich-content ol{padding-left:1.35em}.rich-content a{text-decoration:underline;text-underline-offset:3px}.rich-content blockquote{margin:1em 0;padding-left:1em;border-left:4px solid var(--gold)}.section-heading>.section-lead{margin:0;color:var(--muted);max-width:480px}.hero-lead.rich-content{margin-top:22px}.hero-lead.rich-content p{margin:0}.intro-copy>.rich-content{color:var(--muted);font-size:1.05rem}.course-summary{margin:0 0 26px;color:var(--muted)}.course-summary p{margin:0}.course-card-body>.course-summary+ a{margin-top:auto}.practice-copy>.rich-content{color:var(--muted)}.practice-copy>blockquote.rich-content p{margin:0}.section-heading-light>.section-lead{color:rgba(255,255,255,.78)}.about-copy>.rich-content{color:var(--muted)}.testimonial-rich{font-size:clamp(1.8rem,3vw,3rem);line-height:1.2;color:var(--blue)}.testimonial-rich p{margin:0}.pro-card>.rich-content{color:var(--muted)}.program-description{color:var(--muted)}.contact-copy>.contact-lead{color:rgba(255,255,255,.72);max-width:520px}.contact-copy .rich-content a,.site-footer .rich-content a{color:inherit}.access-box>.rich-content{color:rgba(255,255,255,.65)}.form-heading>.rich-content{color:var(--muted)}.site-footer .rich-content{color:rgba(255,255,255,.56)}
