/* ============================================================
   La Voie du Wing Chun — Style v3.0 (refonte khub-like)
   Palette : Parchment + Bleu de Prusse + Or + Rouge cinabre
   ============================================================ */

:root {
  --parchment:  #f3ede1;
  --parchment2: #ede5d3;
  --blue:       #1a3a5c;
  --blue2:      #2a548a;
  --azure:      #4a7ba8;
  --azure-lt:   #7ba0c4;
  --red:        #8b2020;
  --red-lt:     #b33030;
  --gold:       #c9a54c;
  --gold-lt:    #e4c070;
  --ink:        #1e1e1e;
  --muted:      #6b6457;
  --trans:      cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h:      80px;
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--parchment);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}
@media (max-width: 768px) { body { cursor: auto; } }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ============== CURSOR custom (desktop only) ============== */
.cursor, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transition: opacity 0.3s;
}
.cursor {
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  mix-blend-mode: multiply;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--red);
  border-radius: 50%;
  z-index: 9998;
  opacity: 0.6;
}
@media (max-width: 768px) {
  .cursor, .cursor-ring { display: none; }
}

/* ============== NAV ============== */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 3rem;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
  background: rgba(26, 58, 92, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 165, 76, 0.2);
  transition: border-color 0.3s;
}
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo-symbol {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.nav-logo-text { display: flex; flex-direction: column; gap: 1px; }
.nav-logo-text .nl1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--parchment);
  letter-spacing: 0.06em;
}
.nav-logo-text .nl2 {
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(243, 237, 225, 0.8);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--trans);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta-link {
  background: var(--red) !important;
  color: var(--parchment) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  transition: background 0.25s !important;
}
.nav-cta-link:hover { background: var(--red-lt) !important; }
.nav-cta-link::after { display: none !important; }

/* Burger */
.burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(243, 237, 225, 0.08);
  border: 1px solid rgba(201, 165, 76, 0.25);
  cursor: pointer;
  gap: 5px; flex-shrink: 0; transition: background 0.3s; z-index: 201;
}
.burger:hover { background: rgba(243, 237, 225, 0.15); }
.burger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--parchment);
  border-radius: 2px;
  transition: transform 0.35s var(--trans), opacity 0.25s, width 0.3s;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; width: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 199;
  display: flex; flex-direction: column;
  background: rgba(13, 21, 13, 0);
  pointer-events: none;
  transition: background 0.4s;
}
.mobile-drawer.open {
  background: rgba(13, 21, 13, 0.6);
  pointer-events: all;
}
.mobile-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--blue);
  border-left: 1px solid rgba(201, 165, 76, 0.15);
  transform: translateX(100%);
  transition: transform 0.4s var(--trans);
  display: flex; flex-direction: column;
  overflow-y: auto;
  padding: calc(var(--nav-h) + 2rem) 2rem 3rem;
}
.mobile-drawer.open .mobile-panel { transform: translateX(0); }
.mobile-panel::before {
  content: '詠\A春';
  white-space: pre;
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 10rem;
  color: rgba(201, 165, 76, 0.05);
  position: absolute; bottom: 1rem; right: 0.5rem;
  line-height: 0.85;
  pointer-events: none; user-select: none;
}
.mobile-nav-links {
  list-style: none; display: flex; flex-direction: column;
  gap: 0.4rem; margin-bottom: 2.5rem;
}
.mobile-nav-links li {
  opacity: 0; transform: translateX(20px);
  transition: opacity 0.35s, transform 0.35s;
}
.mobile-drawer.open .mobile-nav-links li:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.10s; }
.mobile-drawer.open .mobile-nav-links li:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.15s; }
.mobile-drawer.open .mobile-nav-links li:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.20s; }
.mobile-drawer.open .mobile-nav-links li:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.25s; }
.mobile-drawer.open .mobile-nav-links li:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.30s; }
.mobile-drawer.open .mobile-nav-links li:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.35s; }
.mobile-nav-links a {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem; border-radius: 12px;
  color: rgba(243, 237, 225, 0.75);
  font-size: 0.9rem; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid transparent;
  transition: color 0.25s, background 0.25s, border-color 0.25s;
}
.mobile-nav-links a:hover, .mobile-nav-links a.active {
  color: var(--gold-lt);
  background: rgba(201, 165, 76, 0.07);
  border-color: rgba(201, 165, 76, 0.15);
}
.mobile-nav-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(74, 123, 168, 0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.mobile-nav-links a.mobile-cta {
  background: var(--red); color: var(--parchment);
  border-color: var(--red); border-radius: 50px;
  justify-content: center; margin-top: 0.8rem; font-weight: 500;
}
.mobile-nav-links a.mobile-cta:hover {
  background: var(--red-lt); border-color: var(--red-lt);
}
.mobile-divider { height: 1px; background: rgba(243, 237, 225, 0.07); margin: 1.5rem 0; }
.mobile-contact-block { display: flex; flex-direction: column; gap: 0.8rem; }
.mobile-contact-block a {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.82rem; color: rgba(243, 237, 225, 0.5);
  transition: color 0.25s;
}
.mobile-contact-block a:hover { color: var(--gold-lt); }
.mc-ic {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(243, 237, 225, 0.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
}
.mobile-socials { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
.mobile-social {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(243, 237, 225, 0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(243, 237, 225, 0.4);
  font-size: 0.75rem;
  transition: all 0.3s;
}
.mobile-social:hover { border-color: var(--gold); color: var(--gold); }
.mobile-footer-label {
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243, 237, 225, 0.25);
  margin-bottom: 0.5rem;
}
.drawer-backdrop {
  position: absolute; inset: 0;
  right: min(320px, 85vw);
  cursor: pointer;
}

@media (max-width: 900px) {
  nav.site-nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .burger { display: flex; }
}
@media (min-width: 901px) {
  .mobile-drawer { display: none !important; }
  .burger { display: none !important; }
}

/* ============== HERO ============== */
.hero {
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 0 6rem;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  animation: kenburns 30s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 18, 30, 0.72) 0%, rgba(10, 18, 30, 0.4) 55%, rgba(10, 18, 30, 0.15) 100%),
    linear-gradient(180deg, rgba(10, 18, 30, 0.15) 0%, transparent 40%, rgba(10, 18, 30, 0.5) 100%);
}
@keyframes kenburns {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.08) translate(-1.5%, 1%); }
}
.hero-decor {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  z-index: 2;
}
.hero-left {
  position: relative; z-index: 2;
  max-width: 640px;
  padding-top: var(--nav-h);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 165, 76, 0.2);
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--parchment);
  margin-bottom: 1.6rem;
}
.hero h1 em { font-style: italic; color: var(--gold-lt); }
.hero-sub {
  font-size: 1.05rem; font-weight: 300;
  line-height: 1.75;
  color: rgba(243, 237, 225, 0.72);
  max-width: 480px;
  margin-bottom: 3rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-main {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--parchment);
  padding: 0.85rem 1.8rem; border-radius: 50px;
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: background 0.3s, transform 0.2s;
  border: none; cursor: pointer;
}
.btn-main:hover { background: var(--red-lt); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(201, 165, 76, 0.5);
  color: var(--gold-lt);
  padding: 0.85rem 1.8rem; border-radius: 50px;
  font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(201, 165, 76, 0.08); }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(243, 237, 225, 0.5);
  font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
  z-index: 2;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(243, 237, 225, 0.5), transparent);
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ============== SECTIONS COMMON ============== */
section { padding: 7rem 0; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 3rem; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--azure);
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.section-label::before {
  content: '';
  display: block; width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--azure);
  box-shadow: 0 0 0 3px rgba(74, 123, 168, 0.2);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--blue);
}
.section-title em { font-style: italic; color: var(--red); }
.section-title--light { color: var(--parchment); }
.section-title--light em { color: var(--gold-lt); }
.divider {
  width: 60px; height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 1.5rem 0 2rem;
}
.divider--red { background: linear-gradient(to right, var(--red), transparent); }
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s var(--trans), transform 0.7s var(--trans);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.32s; }

/* ============== PHILOSOPHIE ============== */
.section-philosophie { background: var(--parchment2); position: relative; overflow: hidden; }
.section-philosophie::before {
  content: '武';
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 28rem;
  color: rgba(26, 58, 92, 0.04);
  position: absolute; right: -4rem; top: -4rem;
  line-height: 1;
  pointer-events: none;
}
.philo-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.philo-text p {
  font-size: 1.05rem; line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.philo-text p strong { color: var(--blue); font-weight: 600; }
.philo-pillars { display: flex; flex-direction: column; gap: 1rem; }
.pillar {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 0.85rem 1.4rem 0.85rem 0.85rem;
  background: var(--parchment);
  border-radius: 60px;
  border: 1px solid rgba(26, 58, 92, 0.08);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.pillar:hover {
  border-color: rgba(139, 32, 32, 0.3);
  transform: translateX(6px);
  box-shadow: 0 4px 24px rgba(139, 32, 32, 0.08);
}
.pillar-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--azure), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 1.5rem;
  color: var(--gold-lt);
  flex-shrink: 0;
  transition: background 0.3s;
}
.pillar:hover .pillar-icon {
  background: linear-gradient(135deg, var(--red), #5a0e0e);
}
.pillar-body strong {
  display: block;
  font-size: 0.85rem; font-weight: 600;
  color: var(--blue);
  margin-bottom: 0.2rem;
  letter-spacing: 0.04em;
}
.pillar-body span {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ============== LA VOIE ============== */
.section-voie { background: var(--parchment); position: relative; }
.voie-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.voie-quote {
  position: relative; padding: 2.5rem;
  background: var(--blue);
  border-radius: 24px;
  color: var(--parchment);
}
.voie-quote::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  color: rgba(201, 165, 76, 0.12);
  position: absolute; top: -1rem; left: 1.5rem;
  line-height: 1;
}
.voie-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-style: italic;
  line-height: 1.75;
  color: rgba(243, 237, 225, 0.85);
  position: relative; z-index: 1;
}
.voie-quote cite {
  display: block; margin-top: 1.5rem;
  font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}
.voie-text p {
  font-size: 1.05rem; line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.voie-text p strong { color: var(--blue); font-weight: 600; }

/* ============== SIFU BRICE ============== */
.section-prof { background: var(--blue); position: relative; overflow: hidden; }
.section-prof::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(139, 32, 32, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 0%, rgba(74, 123, 168, 0.2) 0%, transparent 50%);
  pointer-events: none;
}
.prof-grid {
  display: grid; grid-template-columns: 380px 1fr;
  gap: 6rem; align-items: center;
  position: relative; z-index: 1;
}
.prof-photo-wrap { position: relative; display: flex; justify-content: center; }
.prof-photo-circle {
  width: 320px; height: 320px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(201, 165, 76, 0.3);
  box-shadow: 0 0 0 14px rgba(201, 165, 76, 0.05);
}
.prof-photo-circle img { width: 100%; height: 100%; object-fit: cover; }
.prof-photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #243758, #1a3a5c);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.8rem;
}
.prof-photo-placeholder span:first-child {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 6rem;
  color: rgba(201, 165, 76, 0.2);
}
.prof-photo-placeholder span:last-child {
  font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243, 237, 225, 0.2);
}
.prof-badge {
  position: absolute; bottom: 8px; right: 12px;
  background: var(--red); color: var(--parchment);
  width: 88px; height: 88px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  border: 3px solid var(--blue);
  box-shadow: 0 6px 24px rgba(139, 32, 32, 0.4);
}
.prof-badge strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300;
  color: var(--gold-lt);
  line-height: 1;
}
.prof-badge span {
  font-size: 0.5rem; letter-spacing: 0.1em;
  text-transform: uppercase; opacity: 0.8;
}
.prof-content .section-label { color: var(--gold); }
.prof-content .section-label::before {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 165, 76, 0.2);
}
.prof-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 300;
  color: var(--parchment);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.prof-name em { font-style: italic; color: var(--gold-lt); }
.prof-title-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201, 165, 76, 0.1);
  border: 1px solid rgba(201, 165, 76, 0.22);
  color: var(--gold-lt);
  font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 1.2rem; border-radius: 50px;
  margin-bottom: 2rem;
}
.prof-bio {
  font-size: 0.98rem; line-height: 1.85;
  color: rgba(243, 237, 225, 0.6);
  margin-bottom: 1.2rem;
}
.prof-stats { display: flex; gap: 2.5rem; margin-top: 2rem; }
.prof-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 300;
  color: var(--gold-lt);
  line-height: 1;
}
.prof-stat span {
  font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(243, 237, 225, 0.35);
}

/* ============== COURS ============== */
.section-cours { background: var(--parchment); }
.cours-intro { max-width: 620px; margin-bottom: 4rem; }
.cours-intro p { font-size: 1.05rem; line-height: 1.8; color: var(--muted); }
.lieux-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-bottom: 3rem;
}
.lieu-card {
  background: var(--blue);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s var(--trans), box-shadow 0.3s;
  position: relative;
}
.lieu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.lieu-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(139, 32, 32, 0.12) 0%, transparent 60%);
}
.lieu-header { padding: 2.5rem 2.5rem 0; position: relative; z-index: 1; }
.lieu-flag { display: flex; align-items: center; gap: 10px; margin-bottom: 1.2rem; }
.lieu-dot { width: 10px; height: 10px; border-radius: 50%; }
.lieu-dot--sm { background: var(--red); }
.lieu-dot--di { background: var(--gold); }
.lieu-flag span {
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243, 237, 225, 0.45);
}
.lieu-city {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 300;
  color: var(--parchment);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.lieu-address {
  font-size: 0.8rem;
  color: rgba(243, 237, 225, 0.4);
  margin-bottom: 2rem;
}
.lieu-horaires {
  border-top: 1px solid rgba(243, 237, 225, 0.07);
  padding: 2rem 2.5rem;
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 0.7rem;
}
.horaire-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.6rem 0.9rem;
  background: rgba(243, 237, 225, 0.04);
  border-radius: 50px;
}
.horaire-row .jour { font-size: 0.78rem; color: rgba(243, 237, 225, 0.6); }
.horaire-row .heure {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--gold-lt);
  font-weight: 300;
}
.horaire-row .niveau {
  font-size: 0.62rem; letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(139, 32, 32, 0.3);
  color: #f5a0a0;
  padding: 0.2rem 0.7rem; border-radius: 50px;
}
.lieu-footer { padding: 0 2.5rem 2.5rem; position: relative; z-index: 1; }
.tarifs-wrap {
  background: var(--parchment2);
  border-radius: 24px;
  padding: 3rem;
  margin-top: 2rem;
}
.tarifs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tarif-card {
  background: var(--parchment);
  border: 1px solid rgba(26, 58, 92, 0.1);
  border-radius: 20px;
  padding: 2rem; text-align: center;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.tarif-card:hover {
  border-color: var(--azure);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26, 58, 92, 0.12);
}
.tarif-card.featured {
  border-color: var(--red);
  background: var(--blue);
}
.tarif-badge-pop {
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--red); color: var(--parchment);
  font-size: 0.62rem; letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem; border-radius: 50px;
  white-space: nowrap;
}
.tarif-name {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.tarif-card.featured .tarif-name { color: rgba(243, 237, 225, 0.5); }
.tarif-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300;
  color: var(--blue);
  line-height: 1;
}
.tarif-card.featured .tarif-price { color: var(--gold-lt); }
.tarif-price sup { font-size: 1.2rem; vertical-align: super; }
.tarif-price sub { font-size: 0.9rem; }
.tarif-desc {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.8rem;
  line-height: 1.5;
}
.tarif-card.featured .tarif-desc { color: rgba(243, 237, 225, 0.45); }

/* ============== CYCLES ============== */
.section-cycles { background: var(--parchment2); }
.cycles-list {
  display: flex; flex-direction: column; gap: 1rem;
  margin-top: 3rem;
}
.cycle-item {
  border: 1px solid rgba(26, 58, 92, 0.1);
  border-radius: 16px;
  overflow: hidden;
  background: var(--parchment);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.cycle-item:hover { box-shadow: 0 4px 20px rgba(26, 58, 92, 0.08); }
.cycle-item.open { border-color: rgba(74, 123, 168, 0.4); }
.cycle-toggle {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.2rem 1.6rem;
  display: flex; align-items: center; gap: 1.2rem;
  text-align: left;
  font-family: inherit;
}
.cycle-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(74, 123, 168, 0.1);
  border: 1px solid rgba(74, 123, 168, 0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 400;
  color: var(--azure);
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.cycle-item.open .cycle-num {
  background: var(--azure);
  color: var(--parchment);
  border-color: var(--azure);
}
.cycle-title-text {
  flex: 1;
  font-size: 0.92rem; font-weight: 500;
  color: var(--blue);
}
.cycle-arrow {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(74, 123, 168, 0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--azure);
  font-size: 0.82rem;
  transition: transform 0.35s, background 0.3s, color 0.3s;
  flex-shrink: 0;
}
.cycle-item.open .cycle-arrow {
  transform: rotate(180deg);
  background: var(--azure);
  color: var(--parchment);
}
.cycle-body { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--trans); }
.cycle-item.open .cycle-body { max-height: 400px; }
.cycle-content {
  padding: 0 1.6rem 1.5rem;
  padding-left: calc(1.6rem + 40px + 1.2rem);
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--muted);
  border-top: 1px solid rgba(26, 58, 92, 0.06);
  padding-top: 1.1rem;
}
.cycle-tag {
  display: inline-flex;
  background: rgba(74, 123, 168, 0.1);
  color: var(--azure);
  font-size: 0.62rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem; border-radius: 50px;
  margin-bottom: 0.7rem;
}

/* ============== STAGES ============== */
.section-stages { background: var(--blue); position: relative; overflow: hidden; }
.section-stages::before {
  content: '道';
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 40rem;
  color: rgba(201, 165, 76, 0.04);
  position: absolute; left: -5rem; bottom: -8rem;
  line-height: 1;
  pointer-events: none;
}
.stages-top {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3.5rem;
  position: relative; z-index: 1;
  flex-wrap: wrap; gap: 1.5rem;
}
.stages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative; z-index: 1;
}
.stage-card {
  background: rgba(243, 237, 225, 0.04);
  border: 1px solid rgba(201, 165, 76, 0.15);
  border-radius: 20px;
  padding: 2rem;
  transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: block;
}
.stage-card:hover {
  background: rgba(243, 237, 225, 0.08);
  border-color: rgba(201, 165, 76, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.stage-date {
  display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center;
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(201, 165, 76, 0.1);
  border: 1px solid rgba(201, 165, 76, 0.3);
  margin-bottom: 1.2rem;
}
.stage-date strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem; font-weight: 600;
  color: var(--gold-lt);
  line-height: 1;
}
.stage-date span {
  font-size: 0.52rem; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(243, 237, 225, 0.38);
  line-height: 1.4;
}
.stage-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 400;
  color: var(--parchment);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.stage-desc {
  font-size: 0.8rem; line-height: 1.7;
  color: rgba(243, 237, 225, 0.5);
  margin-bottom: 1.5rem;
}
.stage-meta { display: flex; gap: 1rem; flex-wrap: wrap; }
.stage-pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.65rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(243, 237, 225, 0.42);
}
.stage-pill::before {
  content: '';
  display: block; width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ============== SHIATSU ============== */
.section-shiatsu { background: var(--parchment); position: relative; overflow: hidden; }
.section-shiatsu::before {
  content: '氣';
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 30rem;
  color: rgba(139, 32, 32, 0.05);
  position: absolute; right: -2rem; top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  pointer-events: none;
}
.shiatsu-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.shiatsu-visual {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--parchment2), var(--parchment));
  border: 2px solid rgba(26, 58, 92, 0.1);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
  max-width: 360px;
  box-shadow: 0 0 0 16px rgba(139, 32, 32, 0.04);
}
.shiatsu-visual span:first-child {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 8rem;
  color: rgba(139, 32, 32, 0.15);
}
.shiatsu-visual span:last-child {
  font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.shiatsu-card {
  display: flex; gap: 1.2rem; align-items: center;
  padding: 1rem 1.3rem;
  background: var(--parchment2);
  border-radius: 60px;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(139, 32, 32, 0.1);
  transition: border-color 0.3s, transform 0.3s;
}
.shiatsu-card:hover {
  border-color: rgba(139, 32, 32, 0.3);
  transform: translateX(4px);
}
.shiatsu-ic {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 32, 32, 0.1), rgba(139, 32, 32, 0.04));
  border: 1px solid rgba(139, 32, 32, 0.16);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.shiatsu-card strong {
  display: block;
  font-size: 0.86rem; font-weight: 600;
  color: var(--blue);
  margin-bottom: 0.2rem;
}
.shiatsu-card p {
  font-size: 0.78rem; line-height: 1.6;
  color: var(--muted);
}
.shiatsu-tarifs {
  display: flex; gap: 1.2rem; align-items: center;
  margin-top: 2rem; flex-wrap: wrap;
}
.shiatsu-t {
  background: var(--blue); color: var(--parchment);
  width: 94px; height: 94px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  border: 2px solid rgba(201, 165, 76, 0.2);
}
.shiatsu-t strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 300;
  color: var(--gold-lt);
  line-height: 1;
}
.shiatsu-t span {
  font-size: 0.58rem; letter-spacing: 0.1em;
  text-transform: uppercase; opacity: 0.55;
}

/* ============== GALERIE ============== */
.section-galerie { background: var(--parchment2); overflow: hidden; }
.galerie-intro { margin-bottom: 3rem; max-width: 560px; }
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 12px;
}
.galerie-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: transform 0.35s;
}
.galerie-item:hover { transform: scale(1.02); }
.galerie-item:nth-child(1) { grid-column: span 2; grid-row: span 2; border-radius: 24px; }
.galerie-item:nth-child(2) { border-radius: 50%; }
.galerie-item:nth-child(3) { border-radius: 50%; }
.galerie-item:nth-child(4) { grid-column: span 2; border-radius: 20px; }
.galerie-inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #2a3d68, #1a3a5c);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.5rem;
}
.galerie-inner span:first-child {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 3.5rem;
  color: rgba(201, 165, 76, 0.25);
}
.galerie-inner span:last-child {
  font-size: 0.58rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243, 237, 225, 0.22);
}
.galerie-overlay {
  position: absolute; inset: 0;
  background: rgba(26, 58, 92, 0.72);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}
.galerie-item:hover .galerie-overlay { opacity: 1; }
.galerie-overlay span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--gold-lt);
}

/* ============== TÉMOIGNAGES ============== */
.section-temoignages { background: var(--blue2); }
.temoignages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.temoignage-card {
  background: rgba(243, 237, 225, 0.04);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(243, 237, 225, 0.06);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.temoignage-card:hover {
  border-color: rgba(201, 165, 76, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}
.temoignage-stars {
  display: flex; gap: 3px;
  margin-bottom: 1.2rem;
  color: var(--gold);
}
.temoignage-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; line-height: 1.8;
  color: rgba(243, 237, 225, 0.6);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.temoignage-author {
  display: flex; align-items: center; gap: 1rem;
}
.temoignage-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--azure), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold-lt);
  flex-shrink: 0;
}
.temoignage-info strong {
  display: block;
  font-size: 0.84rem; font-weight: 600;
  color: var(--parchment);
}
.temoignage-info span {
  font-size: 0.68rem;
  color: rgba(243, 237, 225, 0.3);
  letter-spacing: 0.08em;
}

/* ============== CTA ============== */
.section-cta {
  background:
    radial-gradient(ellipse at center, rgba(139, 32, 32, 0.2) 0%, transparent 65%),
    var(--blue);
  text-align: center;
  padding: 8rem 0;
}
.cta-sub {
  font-size: 1rem;
  color: rgba(243, 237, 225, 0.5);
  max-width: 480px; margin: 0 auto 3rem;
  line-height: 1.75;
}
.cta-actions {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
}
.cta-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-style: italic;
  color: rgba(201, 165, 76, 0.5);
  margin-top: 3rem;
}

/* ============== FOOTER ============== */
footer.site-footer {
  background: #0d152d;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(201, 165, 76, 0.1);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(243, 237, 225, 0.05);
  margin-bottom: 2rem;
}
.footer-tagline {
  font-size: 0.8rem; line-height: 1.7;
  color: rgba(243, 237, 225, 0.3);
  max-width: 240px;
  margin-top: 0.8rem;
}
.footer-socials {
  display: flex; gap: 0.8rem; margin-top: 1.5rem;
}
.footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(243, 237, 225, 0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  color: rgba(243, 237, 225, 0.45);
  transition: all 0.3s;
}
.footer-social:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  font-size: 0.8rem;
  color: rgba(243, 237, 225, 0.38);
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--parchment); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy {
  font-size: 0.68rem;
  color: rgba(243, 237, 225, 0.18);
}
.footer-chinese {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 1.4rem;
  color: rgba(201, 165, 76, 0.18);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .hero { padding: 7rem 2rem 5rem; }
  .hero h1 { font-size: clamp(2.5rem, 8vw, 4rem); }
  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-left { text-align: center; max-width: 100%; }
  .hero-eyebrow { justify-content: center; }
  .philo-grid { grid-template-columns: 1fr; gap: 3rem; }
  .voie-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .prof-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .prof-photo-wrap { justify-content: center; }
  .prof-stats { justify-content: center; }
  .prof-title-tag { margin: 0 auto 2rem; }
  .lieux-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .tarifs-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .stages-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .stages-top { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .shiatsu-grid { grid-template-columns: 1fr; gap: 3rem; }
  .shiatsu-visual { max-width: 280px; margin: 0 auto; }
  .temoignages-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .galerie-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .galerie-item:nth-child(1) { grid-column: span 2; height: 260px; }
  .galerie-item:nth-child(2), .galerie-item:nth-child(3) { border-radius: 16px; height: 180px; }
  .galerie-item:nth-child(4) { grid-column: span 2; height: 200px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .container { padding: 0 1.5rem; }
  section { padding: 5rem 0; }
}
@media (max-width: 600px) {
  .hero { padding: 6rem 1.2rem 4rem; }
  .hero h1 { font-size: 2.6rem; }
  .container { padding: 0 1.2rem; }
  .philo-grid, .lieux-grid, .tarifs-grid { grid-template-columns: 1fr; }
  .prof-photo-circle { width: 260px; height: 260px; }
  .galerie-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .galerie-item:nth-child(1) { grid-column: 1; grid-row: 1; height: 240px; }
  .galerie-item:nth-child(2), .galerie-item:nth-child(3) { border-radius: 16px; height: 160px; }
  .galerie-item:nth-child(4) { grid-column: 1; height: 160px; }
  .footer-grid { grid-template-columns: 1fr; }
  .tarifs-wrap { padding: 2rem 1.2rem; }
  .prof-stats { gap: 1.5rem; }
  .shiatsu-tarifs { justify-content: center; }
  .prof-title-tag { font-size: 0.62rem; text-align: center; }
  section { padding: 4rem 0; }
}
