/* =============================================
   LES MINIS SAMOURAÏS – Design System
   Palette: Écarlate japonais + Or + Ivoire doux
   Typo: Cinzel (titres) + Nunito (corps)
   ============================================= */

:root {
  --red:       #C0392B;
  --red-dark:  #922B21;
  --red-light: #E74C3C;
  --gold:      #D4A017;
  --gold-light:#F0C040;
  --ivory:     #FDF6EC;
  --warm-white:#FFFBF5;
  --charcoal:  #1C1C1E;
  --dark:      #2D2D2D;
  --mid:       #555;
  --light:     #888;
  --border:    rgba(0,0,0,0.08);
  --accent2:   #5B4FCF;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius:    16px;
  --radius-sm: 8px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--warm-white);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- CONTAINER ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(255,251,245,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.nav.scrolled { box-shadow: var(--shadow-md); }

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--charcoal);
}

.nav__kanji {
  font-size: 1.8rem;
  color: var(--red);
  line-height: 1;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__links a {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--mid);
  transition: all var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--red);
  background: rgba(192,57,43,0.08);
}

.nav__cta {
  background: var(--red) !important;
  color: white !important;
  padding: 0.55rem 1.3rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
}
.nav__cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn--primary {
  background: var(--red);
  color: white;
  box-shadow: 0 4px 16px rgba(192,57,43,0.35);
}
.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,57,43,0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid rgba(0,0,0,0.15);
}
.btn--ghost:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(192,57,43,0.05);
}

.btn--full { width: 100%; justify-content: center; }
.btn--large { padding: 1rem 2.4rem; font-size: 1.1rem; }

/* =============================================
   SECTIONS TAGS & HEADERS
   ============================================= */
.section-tag {
  display: inline-block;
  background: rgba(192,57,43,0.1);
  color: var(--red);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}

.section-header p {
  color: var(--mid);
  font-size: 1.05rem;
  margin-top: 0.75rem;
}

h1, h2, h3 { font-family: 'Cinzel', serif; line-height: 1.2; }

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); }
h3 { font-size: 1.2rem; }

em { color: var(--red); font-style: normal; }

.link-arrow {
  color: var(--red);
  font-weight: 700;
  font-size: 0.95rem;
  transition: gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1.5rem;
}
.link-arrow:hover { gap: 0.6rem; }

/* =============================================
   HERO – INDEX
   ============================================= */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 9rem 2rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero__bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.tatami-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 59px,
      rgba(0,0,0,0.03) 59px,
      rgba(0,0,0,0.03) 60px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 59px,
      rgba(0,0,0,0.03) 59px,
      rgba(0,0,0,0.03) 60px
    );
}

.hero__shapes { position: absolute; inset: 0; overflow: hidden; }

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.shape--1 {
  width: 500px; height: 500px;
  background: var(--red);
  top: -100px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.shape--2 {
  width: 300px; height: 300px;
  background: var(--gold);
  bottom: 100px; left: 10%;
  animation: float 10s ease-in-out infinite reverse;
}
.shape--3 {
  width: 200px; height: 200px;
  background: var(--red-light);
  top: 50%; right: 30%;
  animation: float 12s ease-in-out infinite 2s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.05); }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-light);
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: slideDown 0.6s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__title {
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  animation: slideUp 0.7s ease 0.1s both;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--mid);
  max-width: 480px;
  margin-bottom: 2rem;
  animation: slideUp 0.7s ease 0.2s both;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: slideUp 0.7s ease 0.3s both;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: slideUp 0.7s ease 0.4s both;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.stat strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.stat span {
  font-size: 0.8rem;
  color: var(--light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat__sep {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.hero__visual {
  display: flex;
  justify-content: center;
  animation: slideUp 0.8s ease 0.2s both;
}

.hero__img-frame {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 3px solid white;
}

.hero__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-carousel {
  width: 100%;
  height: 100%;
  position: relative;
  background: #111;
}

.hero-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero-carousel__slide.is-active {
  opacity: 1;
}

.hero-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-carousel__caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  text-align: center;
}

.hero-carousel__dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 62px;
  z-index: 2;
  display: flex;
  gap: 0.45rem;
}

.hero-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  cursor: pointer;
  appearance: none;
  transition: all var(--transition);
}

.hero-carousel__dot.is-active {
  width: 26px;
  border-radius: 999px;
  background: white;
}

.hero-carousel__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: white;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.hero-carousel__control:hover {
  background: rgba(0, 0, 0, 0.55);
}

.hero-carousel__control--prev { left: 10px; }
.hero-carousel__control--next { right: 10px; }
.hero__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8ebe0, #fce4d6);
}

.placeholder-dojo {
  width: 80%;
  text-align: center;
}

.dojo-mat {
  height: 120px;
  background: repeating-linear-gradient(
    0deg,
    #c8a97a 0px, #c8a97a 20px,
    #b8956a 20px, #b8956a 40px
  );
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.dojo-kids {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.kid {
  animation: bounce 1.2s ease-in-out infinite;
}
.kid--1 { animation-delay: 0s; }
.kid--2 { animation-delay: 0.2s; }
.kid--3 { animation-delay: 0.4s; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.dojo-label {
  font-weight: 700;
  color: var(--red);
  font-size: 0.9rem;
}

/* =============================================
   INTRO
   ============================================= */
.intro {
  padding: 6rem 0;
  background: white;
  overflow-x: hidden;
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro__text h2 { margin-bottom: 1.25rem; }
.intro__text p { color: var(--mid); margin-bottom: 1rem; }

.intro__values {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.value-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--ivory);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.value-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.value-card__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.value-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--mid);
}

/* =============================================
   ATELIERS
   ============================================= */
.ateliers {
  padding: 6rem 0;
  background: var(--ivory);
}

.ateliers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.atelier-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
  animation: fadeInCard 0.5s ease var(--delay) both;
}

@keyframes fadeInCard {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.atelier-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--red);
}

.atelier-card__icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.atelier-card h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.atelier-card p {
  font-size: 0.9rem;
  color: var(--mid);
  margin-bottom: 1rem;
}

.atelier-card__benefit {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  background: rgba(192,57,43,0.08);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  display: inline-block;
}

/* =============================================
   POURQUOI
   ============================================= */
.pourquoi {
  padding: 6rem 0;
  background: var(--charcoal);
  color: white;
}

.pourquoi__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.big-quote {
  font-family: 'Cinzel', serif;
  font-size: 8rem;
  color: var(--red);
  line-height: 0.5;
  margin-bottom: 1.5rem;
}

blockquote {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: white;
}

.pourquoi__sub { color: rgba(255,255,255,0.6); font-size: 1rem; }

.why-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  margin-bottom: 1rem;
  transition: background var(--transition);
}

.why-item:hover { background: rgba(255,255,255,0.09); }

.why-item__check {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
}

.why-item strong {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 800;
}

.why-item p { font-size: 0.9rem; color: rgba(255,255,255,0.65); }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: 5rem 0;
  background: var(--ivory);
}

.cta-box {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-box__deco {
  position: absolute;
  top: -30px; right: 40px;
  font-size: 12rem;
  color: rgba(255,255,255,0.06);
  font-family: 'Cinzel', serif;
  pointer-events: none;
  user-select: none;
}

.cta-box h2 { color: white; margin-bottom: 1rem; }
.cta-box p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 1.05rem; }

.cta-box .btn--primary {
  background: white;
  color: var(--red);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.cta-box .btn--primary:hover {
  background: var(--ivory);
  transform: translateY(-2px);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 2.5rem 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 700;
}

.footer__brand .nav__kanji { font-size: 1.5rem; }

.footer__nav {
  display: flex;
  gap: 1.5rem;
}

.footer__nav a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__nav a:hover { color: white; }

.footer__copy { font-size: 0.85rem; }

/* =============================================
   PAGE HERO (equipe, contact)
   ============================================= */
.page-hero {
  padding: 10rem 0 5rem;
  background: var(--charcoal);
  color: white;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '侍';
  position: absolute;
  top: -40px;
  right: -20px;
  font-family: 'Cinzel', serif;
  font-size: 20rem;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
}

.page-hero--contact::before { content: '道'; }

.page-hero__inner { display: flex; align-items: center; gap: 3rem; }
.page-hero__content { max-width: 640px; }
.page-hero h1 { color: white; margin-bottom: 1.25rem; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; }
.page-hero .section-tag { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); }
.page-hero__image { flex-shrink: 0; width: 300px; }
.page-hero__image img { width: 100%; height: 100%; object-fit: cover; border-radius: 1rem; box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
@media (max-width: 768px) {
  .page-hero__inner { flex-direction: column; }
  .page-hero__image { width: 100%; max-width: 260px; margin: 0 auto; }
}

/* =============================================
   TEAM PAGE
   ============================================= */
.team-section { padding: 5rem 0; }

.prof-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: flex-start;
  margin-bottom: 4rem;
}

.prof-card--right { direction: rtl; }
.prof-card--right > * { direction: ltr; }

.prof-card__visual {
  position: relative;
}

.prof-card__img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid white;
}

.prof-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prof-avatar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fce4d6, #f8ebe0);
}

.avatar-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Cinzel', serif;
}

.prof-card__kanji {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-family: 'Cinzel', serif;
  font-size: 5rem;
  color: var(--red);
  line-height: 1;
  text-shadow: 2px 4px 12px rgba(192,57,43,0.3);
}

.prof-card--right .prof-card__kanji {
  right: auto;
  left: -20px;
}

.prof-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.prof-card__header h2 {
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}

.prof-card__role {
  color: var(--mid);
  font-weight: 600;
  font-size: 0.9rem;
}

.prof-card__belt {
  background: var(--red);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.prof-card__intro {
  font-size: 1.05rem;
  color: var(--mid);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.prof-section {
  margin-bottom: 1.75rem;
}

.prof-section h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.diploma-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.diploma-list li {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0.75rem 1rem;
}

.diploma-list strong {
  display: block;
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}

.diploma-list span {
  font-size: 0.83rem;
  color: var(--light);
}

.xp-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.xp-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  align-items: flex-start;
}

.xp-item__year {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  padding-top: 0.2rem;
  text-align: right;
  border-right: 2px solid var(--border);
  padding-right: 1rem;
}

.xp-item strong {
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.2rem;
}

.xp-item p {
  font-size: 0.85rem;
  color: var(--mid);
}

.prof-quote {
  background: var(--charcoal);
  color: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  border: none;
  position: relative;
}

.prof-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--red);
  position: absolute;
  top: -10px;
  left: 16px;
  line-height: 1;
  font-family: 'Cinzel', serif;
}

.prof-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0 4rem;
}

.prof-divider__line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.prof-divider__icon {
  font-size: 2rem;
  color: var(--red);
  font-family: 'Cinzel', serif;
}

/* =============================================
   PEDAGOGY
   ============================================= */
.pedagogy {
  padding: 6rem 0;
  background: var(--charcoal);
}

.pedagogy .section-tag {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}

.pedagogy h2 { color: white; }

.pedagogy__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.peda-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: all var(--transition);
}

.peda-item:hover {
  background: rgba(255,255,255,0.09);
  border-color: var(--red);
}

.peda-item__num {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: 1rem;
}

.peda-item h3 {
  font-size: 1rem;
  color: white;
  margin-bottom: 0.75rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
}

.peda-item p { font-size: 0.88rem; color: rgba(255,255,255,0.55); }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section { padding: 5rem 0 6rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: flex-start;
}

.form-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-card h2 { margin-bottom: 0.5rem; font-size: 1.8rem; }

.form-subtitle {
  color: var(--mid);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

fieldset {
  border: none;
  margin-bottom: 2rem;
}

legend {
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 1.25rem;
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--ivory);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: white;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: var(--red-light);
  background: #fff5f5;
}

.form-error {
  font-size: 0.8rem;
  color: var(--red-light);
  font-weight: 600;
  min-height: 1em;
}

.radio-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
}

.radio-label input { width: auto; }

.checkbox-label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.5;
}

.checkbox-label input {
  width: auto;
  margin-top: 2px;
  flex-shrink: 0;
  align-self: flex-start;
}

.form-group--hidden { display: none; }
.form-group--hidden.visible { display: flex; }

.form-success {
  text-align: center;
  padding: 3rem 2rem;
}

.success-icon { font-size: 4rem; margin-bottom: 1rem; }
.form-success h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.form-success p { color: var(--mid); margin-bottom: 0.5rem; }

/* INFO CARDS */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 100px;
}

.info-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.info-card h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.info-card p { font-size: 0.9rem; color: var(--mid); line-height: 1.7; }

.info-note {
  font-size: 0.8rem !important;
  color: var(--light) !important;
  margin-top: 0.5rem;
}

.creneaux-list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 0.5rem; }

.creneau {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.75rem;
  background: var(--ivory);
  border-radius: var(--radius-sm);
}

.creneau__day { font-weight: 700; font-size: 0.9rem; }
.creneau__times { color: var(--red); font-weight: 700; font-size: 0.85rem; }

.tarif-list { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 0.5rem; }

.tarif {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}

.tarif:last-child { border: none; }
.tarif span { color: var(--mid); }
.tarif strong { font-weight: 800; color: var(--charcoal); }
.tarif--free { color: var(--red) !important; }

.info-card--contact { background: var(--charcoal); color: white; }
.info-card--contact h3 { color: rgba(255,255,255,0.9); }

.contact-direct-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-link {
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.contact-link:hover { color: var(--gold-light); }

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.1);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: opacity var(--transition);
}

.social-link--insta {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link--insta:hover { opacity: 0.85; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .pedagogy__grid { grid-template-columns: repeat(2, 1fr); }
  .ateliers__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav__links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--warm-white); padding: 1rem; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); }
  .nav__links.open { display: flex; }
  .nav__burger { display: flex; }

  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 7rem; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__sub { margin: 0 auto 2rem; }
  .hero__visual { display: flex; margin-top: 1rem; }

  .intro__grid { grid-template-columns: 1fr; gap: 2rem; }
  .intro__text { padding-right: 1rem; }
  .intro__values { padding-right: 1rem; }
  .value-card { flex-direction: column; gap: 0.75rem; }
  .pourquoi__inner { grid-template-columns: 1fr; }

  .prof-card { grid-template-columns: 1fr; }
  .prof-card--right { direction: ltr; }
  .prof-card__visual { max-width: 260px; margin: 0 auto; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }

  .footer__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .ateliers__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .pedagogy__grid { grid-template-columns: 1fr; }
  .cta-box { padding: 2.5rem 1.5rem; }
  .cta-box__deco { display: none; }
  .form-card { padding: 1.75rem 1.25rem; }
}
