
:root {
  --black:#050505;
  --gold:#c8a24a;
  --text:#f5f3ee;
  --muted:#b9b3a5;
  --line:rgba(200,162,74,.28);
}
* { box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  margin:0;
  background:var(--black);
  color:var(--text);
  font-family:Inter, Arial, sans-serif;
  line-height:1.65;
}
a { color:inherit; text-decoration:none; }

.nav {
  position:fixed;
  inset:0 0 auto 0;
  z-index:50;
  height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 5vw;
  background:linear-gradient(to bottom,rgba(0,0,0,.76),rgba(0,0,0,.08));
  backdrop-filter:blur(8px);
}
.brand {
  display:flex;
  align-items:center;
  gap:14px;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
}
.brand img {
  width:52px;
  height:52px;
  object-fit:contain;
  border-radius:50%;
}
.menu {
  display:flex;
  gap:28px;
  align-items:center;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#ddd6c4;
}
.cta {
  border:1px solid var(--gold);
  color:#080808;
  background:var(--gold);
  padding:12px 18px;
  border-radius:999px;
  font-weight:800;
}

.hero {
  min-height:100vh;min-height:100svh;
  position:relative;
  display:flex;
  align-items:flex-end;
  padding:150px 6vw 90px;
  overflow:hidden;
}
.hero img.bg {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 32%;
  filter:contrast(1.04) saturate(.82);
}
.hero::before {
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(90deg,rgba(0,0,0,.92) 0%,rgba(0,0,0,.58) 42%,rgba(0,0,0,.14) 100%),
    linear-gradient(0deg,rgba(5,5,5,1) 0%,rgba(5,5,5,.05) 38%);
}
.hero-content {
  position:relative;
  z-index:2;
  max-width:850px;
}
.eyebrow,.kicker {
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:13px;
  margin-bottom:18px;
  font-weight:800;
}
h1,h2,h3 {
  font-family:Georgia,'Times New Roman',serif;
  font-weight:500;
  line-height:1.05;
  margin:0;
}
h1 {
  font-size:clamp(44px,7vw,104px);
  letter-spacing:-.04em;
}
h2 {
  font-size:clamp(36px,5vw,72px);
  letter-spacing:-.035em;
}
h3 { font-size:32px; }
.lead {
  font-size:clamp(18px,2vw,26px);
  max-width:720px;
  color:#e7dfcf;
  margin:28px 0 0;
}
.btns {
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top:38px;
}
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 24px;
  border-radius:999px;
  border:1px solid var(--gold);
  color:#111;
  background:var(--gold);
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  font-size:12px;
}
.btn.secondary {
  background:transparent;
  color:var(--text);
  border-color:rgba(245,243,238,.42);
}

.quote {
  background:#080808;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  text-align:center;
  padding:96px 6vw;
}
.quote p {
  max-width:980px;
  margin:0 auto;
  font-family:Georgia,'Times New Roman',serif;
  font-size:clamp(28px,4.2vw,66px);
  line-height:1.15;
  color:#f4edde;
}

section { padding:110px 6vw; }
.wrap {
  max-width:1220px;
  margin:0 auto;
}
.grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:72px;
  align-items:center;
}
.text p {
  color:#d3cbbb;
  font-size:17px;
  margin:18px 0;
}
.photo-card {
  position:relative;
  border-radius:28px;
  overflow:hidden;
  min-height:560px;
  background:#181818;
  border:1px solid rgba(200,162,74,.20);
  box-shadow:0 28px 80px rgba(0,0,0,.45);
}
.photo-card img {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
/* Photo descendue pour que la tête soit complète */
.photo-sifu img {
  object-position:center 12%;
}
.photo-transmission img {
  object-position:center center;
}

.stats {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:34px;
}
.stat {
  border:1px solid var(--line);
  border-radius:20px;
  padding:22px;
  background:rgba(255,255,255,.025);
}
.stat strong {
  display:block;
  color:var(--gold);
  font-size:34px;
  line-height:1;
  font-family:Georgia,'Times New Roman',serif;
}
.stat span {
  display:block;
  color:var(--muted);
  font-size:13px;
  margin-top:10px;
}
.dark-band {
  background:#0d0d0d;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.transmission-line {
  margin-top:34px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  color:#d8d0c1;
  font-family:Georgia,'Times New Roman',serif;
  font-size:22px;
}
.transmission-line span { color:var(--gold); }

.bg-section {
  position:relative;
  min-height:720px;
  display:flex;
  align-items:center;
  overflow:hidden;
  padding:120px 6vw;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.bg-section img.section-bg {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  filter:contrast(1.05) saturate(.92);
}
.bg-section::before {
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(90deg,rgba(0,0,0,.92) 0%,rgba(0,0,0,.70) 36%,rgba(0,0,0,.25) 72%,rgba(0,0,0,.65) 100%),
    linear-gradient(0deg,rgba(5,5,5,.90) 0%,rgba(5,5,5,.10) 45%,rgba(5,5,5,.70) 100%);
}
.bg-section .wrap {
  position:relative;
  z-index:2;
  width:100%;
}
.bg-box {
  max-width:440px;
  background:rgba(0,0,0,.34);
  border:1px solid rgba(200,162,74,.24);
  border-radius:24px;
  padding:30px;
  backdrop-filter:blur(3px);
}
.bg-box p {
  color:#e4dccd;
  font-size:15.5px;
  line-height:1.55;
}
.bg-right {
  margin-left:auto;
}

.cards {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
  margin-top:40px;
}
.pillar {
  border:1px solid var(--line);
  min-width:0;
  width:100%;
  overflow:hidden;
  border-radius:22px;
  padding:18px 22px;
  background:rgba(0,0,0,.44);
  display:grid;
  grid-template-columns:140px 1fr;
  gap:18px;
  align-items:center;
}
.pillar h3 {
  color:var(--gold);
  margin:0;
  font-size:22px;
  white-space:nowrap;
}
.pillar p {
  font-size:15px;
}
.schedule {
  margin:12px 0;
}
.schedule{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  margin:6px 0;
}
.schedule strong{
  color:#f5f3ee;
  font-weight:800;
  white-space:nowrap;
}
.schedule span{
  color:#d3cbbb;
  white-space:nowrap;
  text-align:right;
  margin:0;
}


.schedule-list {
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top:34px;
}
.schedule-card {
  width:100%;
  display:grid;
  grid-template-columns:118px minmax(0,1fr);
  gap:16px;
  align-items:center;
  padding:16px 18px;
  border:1px solid var(--line);
  border-radius:22px;
  background:rgba(0,0,0,.46);
  overflow:hidden;
}
.schedule-title {
  color:var(--gold);
  font-family:Georgia,'Times New Roman',serif;
  font-size:21px;
  line-height:1.1;
  white-space:normal;
  overflow-wrap:anywhere;
}
.schedule-details {
  display:flex;
  flex-direction:column;
  gap:7px;
}
.schedule-row {
  display:grid;
  grid-template-columns:96px minmax(0,1fr);
  gap:12px;
  align-items:baseline;
}
.schedule-row strong {
  color:#f5f3ee;
  font-weight:800;
  white-space:nowrap;
  font-size:14px;
}
.schedule-row span {
  color:#d3cbbb;
  white-space:normal;
  overflow-wrap:break-word;
  font-size:14px;
}
@media (max-width:900px) {
  .schedule-card { grid-template-columns:1fr; gap:12px; }
  .schedule-row { grid-template-columns:1fr; gap:2px; }
  .schedule-row span { white-space:normal; }
}


.seminar-card {
  display:block;
}
.seminar-title {
  display:block;
  white-space:normal;
  line-height:1.25;
}
.seminar-title span {
  font-family:Inter, Arial, sans-serif;
  font-size:14px;
  font-weight:500;
  color:#d3cbbb;
}

footer {
  padding:70px 6vw;
  background:#060606;
  border-top:1px solid var(--line);
  color:#bdb5a6;
}
footer .foot {
  max-width:1220px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr 1fr 1fr;
  gap:40px;
}
footer img {
  width:86px;
  height:86px;
  object-fit:contain;
  border-radius:50%;
  margin-bottom:18px;
}

@media (max-width:900px) {
  .cards{display:flex;flex-direction:column;}
  .pillar{grid-template-columns:1fr;gap:8px;}
  .menu { display:none; }
  .hero { padding:130px 6vw 70px; }
  .grid { grid-template-columns:1fr; gap:36px; }
  .photo-card { min-height:440px; }
  .stats { grid-template-columns:1fr 1fr; }
  .cards { grid-template-columns:1fr; }
  .bg-section { min-height:640px; }
  .bg-box { padding:30px; }
  .bg-right { margin-left:0; }
  footer .foot { grid-template-columns:1fr; }
}


/* V1.9 Hero refinement */
.hero-title{letter-spacing:.08em;text-transform:uppercase}
.hero-title strong{display:block;font-size:1.25em}
.hero-subtitle{font-weight:300;letter-spacing:.18em;text-transform:uppercase}





/* V2.3.1 — correction largeur accueil */
.hero,.dark-band,.bg-section,.wrap,.grid,.cards,.schedule-list{min-width:0;max-width:100%;}
.hero{overflow:hidden;}
@media(max-width:900px){.grid{grid-template-columns:minmax(0,1fr) !important;}.cards{width:100%;}}


/* V2.4.6 RC2 — hiérarchie du titre d’accueil */
.hero-content h1 .hero-ipman{
  display:block;
  font-size:1em;
  line-height:.92;
}
.hero-content h1 .hero-discipline{
  display:block;
  margin-top:.18em;
  font-size:.54em;
  line-height:1.08;
  letter-spacing:-.025em;
  text-transform:none;
}
.hero-content .hero-association{
  margin-top:20px;
  max-width:920px;
  color:#d8b65f;
  font-size:clamp(23px,2.65vw,42px);
  line-height:1.12;
  letter-spacing:.005em;
  text-shadow:0 3px 18px rgba(0,0,0,.72);
}
@media(max-width:700px){
  .hero-content h1 .hero-discipline{font-size:.48em;}
  .hero-content .hero-association{font-size:clamp(20px,6vw,30px);}
}

/* V6.0.3 — audit mobile final : photos Famille Tang et École réellement visibles */
@media(max-width:620px){
  #famille.bg-section,
  #ecole.bg-section{
    display:flex !important;
    flex-direction:column !important;
    min-height:0 !important;
    padding:0 !important;
    background:#080808 !important;
  }
  #famille.bg-section > .section-bg,
  #ecole.bg-section > .section-bg{
    position:relative !important;
    inset:auto !important;
    order:1 !important;
    width:100% !important;
    height:auto !important;
    max-height:none !important;
    object-fit:contain !important;
    object-position:center center !important;
    display:block !important;
    filter:none !important;
    opacity:1 !important;
    background:#080808 !important;
  }
  #famille.bg-section::before,
  #ecole.bg-section::before{display:none !important;}
  #famille.bg-section > .wrap,
  #ecole.bg-section > .wrap{
    order:2 !important;
    position:relative !important;
    width:100% !important;
    padding:40px 6vw 58px !important;
  }
  #famille .bg-box,
  #ecole .bg-box{
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
    padding:0 !important;
    background:transparent !important;
    border:0 !important;
    box-shadow:none !important;
    backdrop-filter:none !important;
  }
}
