/* School Event Stages — V1.1 visual refresh */
:root{
  --v11-ink:#20222a;
  --v11-muted:#6f7280;
  --v11-line:#e7e4e0;
  --v11-surface:#ffffff;
  --v11-soft:#fbf9f6;
  --v11-coral:#ff765f;
  --v11-coral-dark:#dc5d49;
  --v11-purple:#7258d6;
  --v11-green:#5bbd8a;
  --v11-yellow:#f4c85b;
  --v11-shadow:0 18px 50px rgba(43,36,31,.08);
}

html{scroll-behavior:smooth}
body{
  color:var(--v11-ink);
  background:
    radial-gradient(760px 360px at 8% 4%, rgba(255,118,95,.10), transparent 65%),
    radial-gradient(680px 360px at 94% 18%, rgba(114,88,214,.08), transparent 65%),
    #fbfaf8;
}

.siteHeader{
  position:sticky;
  top:0;
  z-index:40;
  border-bottom:1px solid rgba(32,34,42,.08);
  background:rgba(251,250,248,.92);
  backdrop-filter:blur(14px);
}
.siteHeader__inner{
  min-height:68px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.siteBrand{
  display:flex;
  align-items:center;
  gap:11px;
  font-weight:900;
  letter-spacing:-.02em;
}
.siteBrand__mark{
  width:38px;
  height:38px;
  border-radius:12px;
  display:grid;
  place-items:center;
  color:#fff;
  background:linear-gradient(135deg,var(--v11-coral),#ff9c78);
  box-shadow:0 10px 22px rgba(255,118,95,.22);
}
.siteBrand__copy{display:grid;line-height:1.02}
.siteBrand__copy small{font-size:11px;color:var(--v11-muted);font-weight:800;letter-spacing:.05em;text-transform:uppercase}
.siteHeader__nav{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.siteHeader__nav a{
  padding:9px 11px;
  border-radius:12px;
  color:var(--v11-muted);
  font-weight:800;
  font-size:14px;
}
.siteHeader__nav a:hover{background:#fff;color:var(--v11-ink)}
.siteHeader__nav .primaryNav{background:var(--v11-ink);color:#fff;padding-inline:15px}

.hero{padding:44px 0 18px}
.hero__wrap{display:block}
.seHeroV2__head{gap:8px;max-width:800px}
.seHeroV2__h1{
  margin:4px 0 0;
  font-size:clamp(42px,7vw,76px);
  line-height:.98;
  letter-spacing:-.055em;
}
.seHeroV2__meta{
  font-size:18px;
  font-weight:850;
  color:var(--v11-muted);
}
.seHeroV2__chips{display:none}
.seHeroV2__grid{
  display:block;
  margin-top:24px;
}
.seHeroV2__photoCard{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(280px,.8fr);
  overflow:hidden;
  border:1px solid var(--v11-line);
  border-radius:28px;
  background:var(--v11-surface);
  box-shadow:var(--v11-shadow);
}
.seHeroV2__img{
  width:100%;
  height:100%;
  min-height:330px;
  max-height:480px;
  object-fit:cover;
}
.seHeroV2__photoBody{
  padding:clamp(24px,4vw,48px);
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  background:linear-gradient(150deg,#fff 0%,#fff8f4 100%);
}
.seHeroV2__copy{
  font-size:clamp(20px,2.3vw,30px);
  line-height:1.22;
  letter-spacing:-.025em;
  margin-bottom:22px;
}
.seHeroV2__photoBody .banner{display:none}
.seHeroV2__reserveCard{display:none}
.seHeroV2__photoBody .btn,
.btn{
  color:#fff;
  background:var(--v11-ink);
  border:none;
  border-radius:14px;
  box-shadow:none;
}
.pill,.tag{
  border:1px solid var(--v11-line);
  background:#fff;
  box-shadow:none;
}

.section{padding:34px 0}
.sectionHead{max-width:760px}
.sectionHead h2{
  margin:0;
  font-size:clamp(30px,4vw,44px);
  letter-spacing:-.035em;
  line-height:1.04;
}
.sectionHead p{font-size:16px;line-height:1.55;color:var(--v11-muted)}
.eyebrowV11{
  display:block;
  color:var(--v11-coral-dark);
  font-size:12px;
  font-weight:950;
  letter-spacing:.09em;
  text-transform:uppercase;
  margin-bottom:8px;
}

.calendarSection{padding-top:42px}
.periodsGrid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:22px;
}
.periodCard{
  appearance:none;
  width:100%;
  min-height:190px;
  padding:20px;
  border:1px solid var(--v11-line);
  border-radius:22px;
  background:rgba(255,255,255,.82);
  text-align:left;
  color:var(--v11-ink);
  cursor:pointer;
  display:flex;
  flex-direction:column;
  gap:12px;
  transition:transform .16s ease,border-color .16s ease,box-shadow .16s ease;
}
.periodCard:hover{transform:translateY(-2px);box-shadow:var(--v11-shadow)}
.periodCard.isSelected{
  border-color:rgba(255,118,95,.48);
  background:linear-gradient(145deg,#fff,#fff5f1);
  box-shadow:0 18px 45px rgba(255,118,95,.11);
}
.periodCard__top{display:flex;align-items:flex-start;justify-content:space-between;gap:12px}
.periodCard__season{font-size:19px;font-weight:950;letter-spacing:-.02em}
.periodStatus{
  border-radius:999px;
  padding:6px 9px;
  font-size:11px;
  line-height:1;
  white-space:nowrap;
  font-weight:900;
  background:#f1f1f2;
  color:#656774;
}
.periodStatus.open{background:#e9f8f0;color:#28774e}
.periodStatus.soon{background:#fff3d9;color:#8b6612}
.periodStatus.closed,.periodStatus.finished{background:#f0eff4;color:#777381}
.periodCard__dates{font-size:17px;line-height:1.3}
.periodCard__meta{color:var(--v11-muted);font-size:13px;line-height:1.45}
.periodCard__action{margin-top:auto;font-size:13px;font-weight:900;color:var(--v11-coral-dark)}
.calendarError{padding:18px;border:1px solid var(--v11-line);border-radius:18px;background:#fff}

.periodSummary{
  margin-top:20px;
  border:1px solid var(--v11-line);
  border-radius:26px;
  background:#fff;
  box-shadow:var(--v11-shadow);
  padding:clamp(20px,3.5vw,34px);
}
.periodSummary__head{display:flex;align-items:flex-start;justify-content:space-between;gap:20px}
.periodSummary__head h2{margin:0;font-size:30px;letter-spacing:-.035em}
.periodSummary__head p{margin:7px 0 0;color:var(--v11-muted);font-weight:800}
.periodIntro{margin:22px 0 0;font-size:17px;line-height:1.55;max-width:850px;color:#494b55}
.btnV11{
  appearance:none;
  border:none;
  border-radius:13px;
  padding:11px 14px;
  font:inherit;
  font-weight:900;
  cursor:pointer;
}
.btnV11.secondary{background:var(--v11-soft);border:1px solid var(--v11-line);color:var(--v11-ink)}
.practicalGrid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin-top:22px;
}
.practicalItem{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:15px;
  border-radius:16px;
  background:var(--v11-soft);
  border:1px solid #efede9;
}
.practicalItem>span{font-size:20px}
.practicalItem div{display:grid;gap:3px}
.practicalItem small{color:var(--v11-muted);font-weight:800}
.practicalItem strong{font-size:14px;line-height:1.45}
.knowBox{
  margin-top:12px;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:7px 18px;
  padding:16px 18px;
  border-radius:16px;
  background:#fff8e8;
  border:1px solid #f4e4bd;
}
.knowBox strong{grid-row:1/-1;color:#765d25}
.knowBox span{font-size:13px;line-height:1.45;color:#665b43}

#stages.section{padding-top:48px}
.cards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-top:22px;
}
.stageCard{
  max-width:none;
  width:auto;
  border:1px solid var(--v11-line);
  border-radius:22px;
  background:#fff;
  box-shadow:none;
}
.stageCard:hover{transform:translateY(-3px);box-shadow:var(--v11-shadow)}
.stageMedia{height:190px;border-bottom:1px solid var(--v11-line)}
.stageImg--placeholder{
  background:
    radial-gradient(260px 120px at 18% 28%,rgba(255,118,95,.20),transparent 70%),
    radial-gradient(240px 120px at 82% 70%,rgba(114,88,214,.16),transparent 70%),
    #f7f4ef;
}
.stageBody{padding:18px}
.stageTop{align-items:flex-start}
.age{background:#f6f4f1;border:none;color:#565862}
.price{font-size:15px;text-align:right}
.stageCard h3{margin:15px 0 7px;font-size:22px;letter-spacing:-.025em}
.stageCard p{font-size:14px;line-height:1.55;font-weight:600;min-height:44px}
.cardBtn{
  width:100%;
  justify-content:center;
  margin-top:10px;
  background:var(--v11-soft);
  border:1px solid var(--v11-line);
}

#inscription.section{padding-top:50px;padding-bottom:110px}
.formSectionHead{margin-bottom:18px}
.form{
  border:1px solid var(--v11-line);
  border-radius:26px;
  background:#fff;
  box-shadow:var(--v11-shadow);
  padding:clamp(18px,4vw,36px);
}
.formPeriodChoice{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:18px;
  margin-bottom:28px;
  border-radius:18px;
  background:#fff7f3;
  border:1px solid #f3ddd5;
}
.formPeriodChoice__copy{display:grid;gap:3px}
.formPeriodChoice__copy strong{font-size:20px}
.formPeriodChoice__copy>span:last-child{font-size:13px;color:var(--v11-muted);font-weight:700}
.formPeriodChoice__select{margin:0!important;min-width:min(360px,100%)}
.formPeriodChoice__select>span{display:block;margin-bottom:7px;font-size:12px;color:var(--v11-muted);font-weight:900}
.form h3{letter-spacing:-.02em}
.form input,.form select,.form textarea{border-color:#dedbd6;border-radius:12px}
.form input:focus,.form select:focus,.form textarea:focus{border-color:var(--v11-coral);box-shadow:0 0 0 3px rgba(255,118,95,.10)}
.box{box-shadow:none;background:var(--v11-soft);border-color:var(--v11-line)}
.sep{border-color:#ebe8e4}

.fab{
  background:var(--v11-coral);
  color:#fff;
  border:none;
  box-shadow:0 14px 34px rgba(255,118,95,.26);
}
.stickyBar{border-color:var(--v11-line)}
.stickyBar__btn{background:var(--v11-ink)!important;color:#fff!important}

@media (max-width:900px){
  .siteHeader__nav a:not(.primaryNav){display:none}
  .seHeroV2__photoCard{grid-template-columns:1fr}
  .seHeroV2__img{min-height:240px;max-height:350px}
  .periodsGrid,.cards{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media (max-width:680px){
  .siteHeader__inner{min-height:60px}
  .siteBrand__copy small{display:none}
  .hero{padding-top:28px}
  .seHeroV2__h1{font-size:42px}
  .periodsGrid,.cards,.practicalGrid{grid-template-columns:1fr}
  .periodSummary__head,.formPeriodChoice{align-items:stretch;flex-direction:column}
  .knowBox{grid-template-columns:1fr}
  .knowBox strong{grid-row:auto}
  .periodCard{min-height:165px}
  .stageMedia{height:175px}
}
