:root {
  --ink: #0d0d0d;
  --ink-soft: #141116;
  --ink-raised: #1b161f;
  --paper: #ffffff;
  --paper-soft: #eee9f1;
  --fog: #e8e8e8;
  --muted: #c8c2cc;
  --purple: #8b3dff;
  --purple-deep: #6e22d9;
  --purple-light: #b46bff;
  --line: rgba(180, 107, 255, 0.28);
  --line-strong: rgba(180, 107, 255, 0.66);
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Instrument Sans", system-ui, sans-serif;
  --container: min(1180px, calc(100% - 48px));
  --measure: 68ch;
  --section-space: clamp(78px, 9vw, 128px);
  --transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--fog);
  background: var(--ink);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--purple-light);
  outline-offset: 4px;
}

.manifesto-band :focus-visible,
.final-cta :focus-visible,
.story-ending :focus-visible {
  outline-color: var(--ink);
}

::selection {
  color: var(--paper);
  background: var(--purple-deep);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 650;
  text-wrap: balance;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(4rem, 5.4vw, 4.875rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.625rem, 4vw, 3.625rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.container-narrow {
  width: min(780px, calc(100% - 48px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-160%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow,
.card-label,
.story-step,
.section-name {
  margin-bottom: 16px;
  color: var(--purple-light);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}

.site-header.is-scrolled {
  background: rgba(13, 13, 13, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  width: var(--container);
  min-height: 78px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  width: 116px;
  height: 58px;
  align-items: center;
  overflow: hidden;
}

.brand img {
  width: 116px;
  height: 87px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-menu > a:not(.button),
.nav-courses-link,
.nav-courses-toggle {
  color: var(--fog);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition);
}

.nav-menu > a:not(.button):hover,
.nav-menu > a[aria-current="page"],
.nav-courses-link:hover,
.nav-courses-toggle:hover,
.nav-courses-toggle[aria-expanded="true"],
.nav-group.has-current .nav-courses-link,
.nav-group.has-current .nav-courses-toggle {
  color: var(--purple-light);
}

.nav-group {
  position: relative;
  display: grid;
  grid-template-columns: auto 34px;
  align-items: center;
}

.nav-courses-link {
  display: inline-flex;
  min-height: 44px;
  padding: 8px 2px 8px 0;
  align-items: center;
  text-decoration: none;
}

.nav-courses-toggle {
  display: inline-flex;
  width: 34px;
  min-height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-caret {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform var(--transition);
}

.nav-courses-toggle[aria-expanded="true"] .nav-caret {
  transform: translateY(2px) rotate(225deg);
}

.nav-courses-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: grid;
  width: 240px;
  padding: 10px;
  background: rgba(13, 13, 13, 0.98);
  border: 1px solid var(--line-strong);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.36);
}

.nav-courses-list[hidden] {
  display: none;
}

.nav-courses-list a {
  display: flex;
  min-height: 44px;
  padding: 10px 12px;
  align-items: center;
  color: var(--fog);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
  border-left: 2px solid transparent;
}

.nav-courses-list a:hover,
.nav-courses-list a[aria-current="page"] {
  color: var(--paper);
  background: rgba(180, 107, 255, 0.1);
  border-left-color: var(--purple-light);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  color: var(--paper);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 1px;
  background: currentColor;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  padding: 13px 20px;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary,
.button-small {
  color: var(--ink);
  background: var(--purple-light);
}

.button-primary:hover,
.button-small:hover {
  background: #c18aff;
}

.button-ghost {
  background: transparent;
  border-color: var(--line-strong);
}

.button-ghost:hover {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.875rem;
}

.button-row {
  display: flex;
  margin-top: 30px;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.button-row-center {
  justify-content: center;
}

.text-link,
.contact-line {
  color: var(--purple-light);
  font-weight: 700;
  text-underline-offset: 5px;
}

/* Partition éditoriale */
.editorial-section {
  display: grid;
  width: var(--container);
  margin-inline: auto;
  padding-block: var(--section-space);
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1.66fr);
  gap: clamp(36px, 7vw, 92px);
  border-top: 1px solid var(--line);
}

.section-rail {
  position: sticky;
  top: 112px;
  align-self: start;
}

.section-index {
  display: block;
  color: var(--purple-light);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
}

.section-name {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.section-content > h2 {
  max-width: 860px;
}

.section-intro {
  max-width: var(--measure);
  margin-bottom: 46px;
  color: var(--muted);
  font-size: 1.125rem;
}

/* Accueil : ouverture */
.hero-editorial {
  position: relative;
  display: grid;
  min-height: 92svh;
  padding: 124px max(24px, calc((100% - 1180px) / 2)) 68px;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.78fr);
  align-items: center;
  gap: clamp(38px, 5.5vw, 76px);
  overflow: hidden;
}

.hero-editorial::before {
  position: absolute;
  z-index: 0;
  top: 18%;
  right: 2%;
  width: 26%;
  height: 30%;
  border-top: 1px solid rgba(180, 107, 255, 0.52);
  border-right: 1px solid rgba(180, 107, 255, 0.52);
  content: "";
  transform: rotate(7deg);
}

.hero-editorial::after {
  position: absolute;
  right: -7%;
  bottom: 10%;
  width: 58%;
  height: 90px;
  border-top: 2px solid var(--purple);
  border-radius: 50%;
  transform: rotate(-7deg);
  pointer-events: none;
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-editorial h1 {
  max-width: 12ch;
  font-size: clamp(3.375rem, 4.6vw, 4.125rem);
}

.hero-hook,
.page-lead,
.large-line {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.hero-text,
.hero-welcome {
  max-width: 640px;
  color: var(--muted);
}

.hero-welcome {
  margin-bottom: 24px;
}

.hero-media-column {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: end;
  gap: 22px;
}

.hero-text p {
  margin-bottom: 18px;
}

.hero-course-facts {
  display: grid;
  margin-top: 28px;
  padding: 0;
  border-block: 1px solid var(--line);
  list-style: none;
}

.hero-course-facts li {
  display: grid;
  padding: 12px 0;
  grid-template-columns: minmax(130px, 0.75fr) minmax(190px, 1.25fr) minmax(160px, 1fr);
  align-items: baseline;
  gap: 10px 20px;
}

.hero-course-facts li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-course-facts strong {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1rem;
}

.hero-course-facts span {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 650;
  line-height: 1.4;
}

.hero-photo {
  position: relative;
  z-index: 1;
  align-self: stretch;
  margin: 0;
}

.hero-photo::before {
  position: absolute;
  inset: 8% -18px -18px 18%;
  border: 1px solid var(--line-strong);
  content: "";
}

.hero-photo img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 610px;
  max-height: 760px;
  object-fit: cover;
  object-position: center 36%;
  filter: saturate(0.82) contrast(1.06);
}

.hero-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 12px;
  color: var(--paper);
  background: rgba(13, 13, 13, 0.88);
  border-left: 2px solid var(--purple-light);
  font-size: 0.875rem;
  font-weight: 700;
}

.hero-video-slot {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  margin: 0;
  justify-self: end;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink-soft);
  border: 1px solid var(--line-strong);
  box-shadow: 20px 20px 0 rgba(139, 61, 255, 0.12);
}

.hero-media-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  font-weight: 750;
  text-decoration-color: var(--purple-light);
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.hero-media-link span {
  color: var(--purple-light);
  font-size: 1.3rem;
  transition: transform var(--transition);
}

.hero-media-link:hover span {
  transform: translateX(4px);
}

.hero-video-slot::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.1), transparent 48%, rgba(8, 8, 8, 0.9) 100%);
  content: "";
  pointer-events: none;
  transition: opacity 180ms ease;
}

.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
  background: var(--ink-soft);
}

.hero-video-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 22px 22px 70px;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.hero-video-badge {
  width: max-content;
  padding: 7px 10px;
  color: var(--paper);
  background: rgba(13, 13, 13, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-video-play {
  align-self: center;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 11px 17px 11px 12px;
  color: var(--paper);
  background: rgba(13, 13, 13, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.34);
  font-size: 0.95rem;
  font-weight: 850;
  cursor: pointer;
  pointer-events: auto;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.hero-video-play:hover {
  background: rgba(139, 61, 255, 0.92);
  border-color: var(--paper);
  transform: translateY(-2px);
}

.hero-video-play-icon {
  position: relative;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  background: var(--purple);
  border-radius: 50%;
}

.hero-video-play-icon::after {
  position: absolute;
  top: 50%;
  left: 52%;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--paper);
  transform: translate(-40%, -50%);
  content: "";
}

.hero-video-caption {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 70px;
  left: 22px;
  max-width: 31ch;
  margin: 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.22;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.hero-video-slot.is-playing::before,
.hero-video-slot.is-playing .hero-video-overlay,
.hero-video-slot.is-playing .hero-video-caption {
  opacity: 0;
  visibility: hidden;
}

/* Cours */
.courses-section {
  width: min(1360px, calc(100% - 48px));
  grid-template-columns: minmax(140px, 0.22fr) minmax(0, 1.78fr);
  gap: clamp(36px, 5vw, 72px);
}

.courses-intro {
  display: block;
  margin-bottom: clamp(46px, 6vw, 76px);
}

.courses-intro-copy {
  max-width: 930px;
}

.courses-intro .section-intro {
  margin-bottom: 0;
}

.section-intro strong,
.teacher-copy strong {
  color: var(--paper);
  font-weight: 700;
}

.course-list {
  border-top: 1px solid var(--line-strong);
}

.course-editorial {
  position: relative;
  display: grid;
  padding: clamp(44px, 5vw, 54px) 0;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  column-gap: clamp(42px, 5vw, 74px);
  align-items: start;
  border-bottom: 1px solid var(--line-strong);
}

.course-editorial-featured::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: min(260px, 34%);
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  content: "";
}

.course-editorial-head {
  grid-column: 1;
  grid-row: 1;
  max-width: none;
  margin: 0;
  padding-right: clamp(0px, 1vw, 12px);
}

.course-heading .eyebrow {
  margin-bottom: 10px;
}

.course-heading h3 {
  margin-bottom: 10px;
  font-size: clamp(2.8rem, 5vw, 4.9rem);
}

.course-hook {
  max-width: 30ch;
  margin-bottom: 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.35;
}

.course-audience {
  margin: 18px 0 0;
  color: var(--paper);
  font-size: 1rem;
  font-weight: 700;
}

.course-detail-cta {
  display: grid;
  width: min(100%, 560px);
  min-height: 56px;
  margin-top: 24px;
  padding: 15px 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  background: var(--purple-light);
  border: 1px solid var(--purple-light);
  border-radius: 4px;
  font-weight: 750;
  line-height: 1.35;
  text-decoration: none;
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.course-detail-cta span:last-child {
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1;
  transition: color var(--transition), transform var(--transition);
}

.course-detail-cta:hover {
  color: var(--ink);
  background: #c18aff;
  transform: translateX(5px);
}

.course-detail-cta:hover span:last-child {
  color: var(--ink);
  transform: translateX(3px);
}

.course-description {
  color: var(--muted);
}

.course-description p {
  margin-bottom: 18px;
}

.course-opening {
  max-width: 58ch;
  margin: 0;
  color: var(--fog);
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.65;
}

.course-editorial-body {
  display: block;
  grid-column: 2;
  grid-row: 1;
}

.course-toolkit {
  margin-top: 28px;
}

.course-pillars {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.course-pillars li {
  display: grid;
  padding: 20px 0;
  grid-template-columns: minmax(104px, 0.34fr) minmax(0, 1.66fr);
  gap: 22px;
  border-bottom: 1px solid var(--line);
}

.course-pillars strong {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.course-pillars span {
  color: var(--muted);
  line-height: 1.55;
}

.course-rhythm {
  display: grid;
  margin: 24px 0 0;
  padding-left: 18px;
  gap: 6px;
  border-left: 2px solid var(--purple-light);
}

.course-rhythm strong {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.course-rhythm span {
  color: var(--muted);
}

.course-practical {
  grid-column: 1;
  grid-row: 2 / span 3;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.course-practical > .eyebrow {
  margin-bottom: 12px;
}

.course-editorial-footer {
  display: flex;
  grid-column: 2;
  grid-row: 4;
  margin-top: 28px;
  justify-content: flex-end;
}

.course-support-summary {
  display: grid;
  grid-column: 2;
  grid-row: 2;
  max-width: none;
  margin-top: 38px;
  padding: 26px clamp(24px, 4vw, 42px);
  grid-template-columns: minmax(210px, 0.48fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(24px, 5vw, 68px);
  background: linear-gradient(100deg, rgba(139, 61, 255, 0.15), rgba(180, 107, 255, 0.04) 70%);
  border-left: 3px solid var(--purple-light);
}

.course-support-summary strong {
  display: block;
  margin: 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.3;
}

.course-support-summary p {
  margin: 0;
  color: var(--muted);
}

.season-highlight {
  grid-column: 2;
  grid-row: 3;
  margin-top: 24px;
  padding: 24px clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--purple-light);
}

.season-highlight .eyebrow {
  margin-bottom: 8px;
}

.season-highlight strong,
.season-highlight h3 {
  display: block;
  margin-bottom: 8px;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.3;
}

.season-highlight p:last-child {
  margin: 0;
  color: var(--muted);
}

.season-highlight-detail {
  margin-top: 38px;
  padding: clamp(26px, 4vw, 38px);
  background: linear-gradient(105deg, rgba(139, 61, 255, 0.13), rgba(255, 255, 255, 0.025));
}

.course-support {
  margin-top: 0;
  padding: 28px;
  color: var(--ink);
  background: var(--fog);
  border-top: 4px solid var(--purple);
}

.course-support > strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1.12rem;
}

.course-support p {
  margin-bottom: 0;
  color: #2a252e;
}

.course-meta {
  display: grid;
  margin: 0;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.course-meta div {
  min-width: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.course-meta dt {
  color: var(--purple-light);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.course-meta dd {
  margin: 4px 0 0;
  color: var(--paper);
  font-size: 0.9375rem;
  font-weight: 650;
  line-height: 1.4;
}

.course-actions {
  display: flex;
  margin-top: 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.progressive-details {
  margin-top: 18px;
  border-block: 1px solid var(--line);
}

.progressive-details summary {
  display: flex;
  min-height: 48px;
  padding: 12px 0;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--purple-light);
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 700;
  list-style: none;
}

.progressive-details summary::-webkit-details-marker {
  display: none;
}

.progressive-details summary::after {
  flex: 0 0 auto;
  color: currentColor;
  font-size: 1.2rem;
  content: "+";
}

.progressive-details[open] summary::after {
  content: "−";
}

.progressive-details[open] {
  padding-bottom: 16px;
}

.progressive-details-dark {
  border-color: rgba(110, 34, 217, 0.34);
}

.progressive-details-dark summary {
  color: var(--purple-deep);
}

.music-strip {
  display: grid;
  margin-top: 42px;
  padding: 28px 0;
  grid-template-columns: minmax(150px, 0.35fr) minmax(220px, 0.55fr) minmax(0, 1.1fr);
  gap: 32px;
  border-block: 1px solid var(--line);
}

.music-strip h3,
.music-strip p {
  margin-bottom: 0;
}

.music-strip > p:last-child {
  color: var(--muted);
}

/* Différences */
.difference-sequence {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: difference;
  border-bottom: 1px solid var(--line);
}

.difference-sequence li {
  display: grid;
  padding: 28px 0;
  grid-template-columns: 64px minmax(220px, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  counter-increment: difference;
}

.difference-sequence li::before {
  color: var(--purple-light);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  content: counter(difference, decimal-leading-zero);
}

.difference-sequence h3,
.difference-sequence p {
  margin-bottom: 0;
}

.difference-sequence p {
  color: var(--muted);
}

/* Pédagogie */
.manifesto-band {
  padding-block: var(--section-space);
  color: var(--ink);
  background: var(--paper-soft);
}

.manifesto-grid {
  display: grid;
  width: var(--container);
  margin-inline: auto;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(44px, 8vw, 110px);
}

.manifesto-band h2,
.manifesto-band h3,
.manifesto-band p {
  color: inherit;
}

.manifesto-band .eyebrow {
  color: var(--purple-deep);
}

.manifesto-band em {
  color: var(--purple-deep);
  font-style: normal;
}

.manifesto-copy {
  max-width: var(--measure);
}

.manifesto-copy p {
  margin-bottom: 24px;
}

/* Laurie sur l’accueil */
.teacher-editorial {
  position: relative;
  overflow: visible;
}

.teacher-word {
  margin: 0 0 24px;
  max-width: 100%;
  overflow: clip;
  color: rgba(180, 107, 255, 0.16);
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 750;
  line-height: 0.72;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  white-space: nowrap;
}

.teacher-editorial .section-content {
  min-width: 0;
}

.teacher-copy {
  max-width: 760px;
  margin-left: min(12vw, 150px);
}

.teacher-copy p {
  color: var(--muted);
}

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

.button-video {
  color: var(--ink);
  background: var(--purple-light);
}

.button-video:hover {
  background: #c18aff;
}

.button-video span {
  margin-right: 8px;
  font-size: 0.82rem;
}

/* Planning */
.location-map {
  margin: 0 0 46px;
  overflow: hidden;
  background: linear-gradient(120deg, rgba(139, 61, 255, 0.14), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line-strong);
}

.location-map-intro {
  display: flex;
  padding: 26px clamp(22px, 4vw, 38px);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.location-map-copy {
  display: grid;
  max-width: 680px;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
}

.location-map-copy h3 {
  margin-bottom: 6px;
}

.location-map-copy address {
  color: var(--paper);
  font-style: normal;
  font-weight: 700;
}

.location-map-copy .location-reach {
  max-width: 64ch;
  margin: 13px 0 0;
  color: var(--muted);
}

.location-pin {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  margin-top: 2px;
  border: 2px solid var(--purple-light);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.location-pin::after {
  position: absolute;
  inset: 9px;
  background: var(--purple-light);
  border-radius: 50%;
  content: "";
}

.location-map-load {
  flex: 0 0 auto;
}

.location-map-actions {
  display: grid;
  flex: 0 0 auto;
  gap: 10px;
}

.location-map-actions .button {
  width: 100%;
  justify-content: center;
  margin: 0;
}

.location-map iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
  border-top: 1px solid var(--line-strong);
}

.location-map iframe[hidden] {
  display: none;
}

.practical-lineup {
  border-top: 1px solid var(--line);
}

.practical-lineup > article {
  display: grid;
  padding-block: 24px;
  grid-template-columns: minmax(150px, 0.36fr) minmax(220px, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(22px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
}

.practical-lineup time,
.practical-lineup .price {
  margin: 0;
  color: var(--purple-light);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
}

.practical-lineup h3,
.practical-lineup p {
  margin-bottom: 0;
}

.practical-lineup p {
  color: var(--muted);
}

.season-line,
.payment-line {
  max-width: var(--measure);
  margin-top: 28px;
  color: var(--muted);
}

/* Inscription */
.enrollment-section {
  align-items: start;
}

.enrollment-routes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}

.enrollment-route {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 490px;
  padding: clamp(28px, 4vw, 46px);
  flex-direction: column;
  background: var(--ink);
  overflow: hidden;
}

.enrollment-route::after {
  position: absolute;
  top: -62px;
  right: -42px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(180, 107, 255, 0.34);
  border-radius: 50%;
  content: "";
}

.route-number {
  margin: 0 0 56px;
  color: rgba(180, 107, 255, 0.36);
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 6vw, 6rem);
  font-weight: 750;
  line-height: 0.8;
  letter-spacing: -0.07em;
}

.enrollment-route h3 {
  max-width: 16ch;
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.enrollment-route > p:not(.route-number):not(.eyebrow) {
  color: var(--muted);
}

.enrollment-route > .button {
  width: fit-content;
  margin-top: auto;
}

.document-links {
  display: grid;
  margin: 8px 0 28px;
  border-top: 1px solid var(--line);
}

.document-links a {
  position: relative;
  min-height: 48px;
  padding: 12px 34px 12px 0;
  color: var(--paper);
  border-bottom: 1px solid var(--line);
  font-size: 0.9375rem;
  font-weight: 650;
  text-decoration: none;
}

.document-links a::after {
  position: absolute;
  top: 12px;
  right: 2px;
  color: var(--purple-light);
  content: "PDF";
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.document-links a:hover {
  color: var(--purple-light);
}

.enrollment-note {
  max-width: var(--measure);
  margin: 28px 0 0;
  padding-left: 18px;
  color: var(--muted);
  border-left: 2px solid var(--purple-light);
}

.enrollment-note strong {
  color: var(--paper);
}

/* Essai */
.trial-editorial {
  display: grid;
  width: var(--container);
  margin-inline: auto;
  padding-block: var(--section-space);
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 5vw, 68px);
  border-top: 1px solid var(--line);
}

.trial-copy {
  min-width: 0;
  max-width: 700px;
}

.trial-copy p,
.contact-panel p {
  color: var(--muted);
}

.contact-panel {
  min-width: 0;
  padding: clamp(30px, 4vw, 44px);
  background: var(--ink-raised);
  border-top: 3px solid var(--purple-light);
}

.contact-panel .button {
  width: 100%;
  margin: 12px 0 22px;
}

.tally-frame {
  margin: 20px 0 18px;
}

.tally-direct-link {
  display: inline-block;
  color: var(--purple-light);
  font-size: 0.9375rem;
  font-weight: 700;
}

.direct-contact {
  margin-top: 24px;
  padding: 18px 20px;
  background: rgba(180, 107, 255, 0.08);
  border: 1px solid rgba(180, 107, 255, 0.4);
}

.direct-contact p {
  margin: 0 0 7px;
  font-size: 0.9375rem;
}

.contact-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-line:hover {
  color: var(--purple-light);
}

.form-divider {
  display: flex;
  margin: 28px 0 0;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
}

.form-divider::before,
.form-divider::after {
  height: 1px;
  flex: 1;
  background: var(--line);
  content: "";
}

.trial-social-links {
  display: grid;
  margin-top: 26px;
  padding-top: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  border-top: 1px solid var(--line);
}

.trial-social-links p {
  margin: 0 0 4px;
  grid-column: 1 / -1;
  font-size: 0.9375rem;
}

.trial-social-links a {
  display: flex;
  min-height: 46px;
  padding: 10px 14px;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  font-weight: 700;
  text-decoration: none;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.trial-social-links a:hover {
  color: var(--ink);
  background: var(--purple-light);
  border-color: var(--purple-light);
}

/* FAQ */
.faq-layout {
  display: grid;
  width: var(--container);
  margin-inline: auto;
  padding-block: var(--section-space);
  grid-template-columns: minmax(210px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(44px, 8vw, 100px);
  border-top: 1px solid var(--line);
}

.faq-layout .section-rail {
  position: sticky;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-q {
  display: flex;
  width: 100%;
  min-height: 64px;
  padding: 20px 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--paper);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 650;
  text-align: left;
}

.faq-q span {
  color: var(--purple-light);
  font-size: 1.5rem;
  transition: transform var(--transition);
}

.faq-q[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.faq-a {
  max-width: var(--measure);
  padding: 0 44px 22px 0;
  color: var(--muted);
}

.faq-a[hidden] {
  display: none;
}

.final-cta {
  position: relative;
  padding: clamp(88px, 11vw, 150px) 0;
  color: var(--ink);
  text-align: center;
  background: var(--purple-light);
  overflow: hidden;
}

.final-cta::before {
  position: absolute;
  top: 20%;
  left: -8%;
  width: 116%;
  height: 120px;
  border-top: 2px solid rgba(13, 13, 13, 0.34);
  border-radius: 50%;
  transform: rotate(4deg);
  content: "";
}

.final-cta .container {
  position: relative;
  max-width: 930px;
}

.final-cta h2,
.final-cta p,
.final-cta .eyebrow {
  color: inherit;
}

.final-cta p:not(.eyebrow) {
  max-width: 680px;
  margin-inline: auto;
}

.final-cta .button-primary {
  color: var(--paper);
  background: var(--ink);
}

.final-cta .button-ghost {
  color: var(--ink);
  border-color: rgba(13, 13, 13, 0.62);
}

/* Réseaux */
.social-section {
  padding: clamp(54px, 7vw, 92px) 0;
  background: #080808;
  border-top: 1px solid var(--line);
}

.social-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: end;
  gap: clamp(42px, 7vw, 100px);
}

.social-intro h2 {
  max-width: 14ch;
  margin-bottom: 20px;
}

.social-intro p:not(.eyebrow) {
  max-width: 52ch;
  color: var(--muted);
}

.social-links {
  border-top: 1px solid var(--line-strong);
}

.social-link {
  display: grid;
  grid-template-columns: minmax(120px, 0.65fr) minmax(0, 1.35fr) auto;
  padding: 24px 0;
  align-items: center;
  gap: 18px;
  color: var(--paper);
  border-bottom: 1px solid var(--line-strong);
  text-decoration: none;
  transition: color 160ms ease, padding 160ms ease;
}

.social-link:hover {
  padding-left: 10px;
  color: var(--purple-light);
}

.social-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
}

.social-link > span:nth-child(2) {
  color: var(--muted);
  font-size: 0.95rem;
}

.social-arrow {
  font-size: 1.5rem;
  line-height: 1;
}

/* Pied de page */
.site-footer {
  padding: 64px 0 24px;
  background: #080808;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 0.75fr);
  gap: 36px;
}

.footer-grid h2 {
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.875rem;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--purple-light);
}

.footer-brand img {
  width: 154px;
  margin: -28px 0 -12px;
}

.footer-brand p {
  max-width: 270px;
}

.footer-bottom {
  display: flex;
  margin-top: 44px;
  padding-top: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
}

.footer-bottom p {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom p span {
  color: var(--purple-light);
}

.footer-bottom nav {
  display: flex;
  gap: 18px;
}

/* Pages intérieures */
.page-hero-editorial,
.page-hero {
  position: relative;
  display: grid;
  width: var(--container);
  min-height: 82svh;
  margin-inline: auto;
  padding: 142px 0 84px;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(44px, 8vw, 100px);
}

.page-hero-editorial--copy-only {
  grid-template-columns: minmax(0, 1fr);
}

.page-hero-editorial--copy-only .page-hero-copy {
  width: min(100%, 980px);
}

.page-hero h1,
.page-hero-editorial h1,
.legal-hero h1,
.legal-header h1 {
  font-size: clamp(4rem, 5.4vw, 4.875rem);
}

.page-hero-copy > p:not(.eyebrow):not(.page-lead),
.page-hero-editorial .page-copy {
  max-width: var(--measure);
  color: var(--muted);
}

.page-meta-line {
  display: flex;
  margin: 28px 0;
  padding: 16px 0;
  flex-wrap: wrap;
  gap: 12px 24px;
  border-block: 1px solid var(--line);
}

.page-meta-line span {
  color: var(--fog);
  font-size: 0.875rem;
  font-weight: 650;
}

.page-hero-photo {
  margin: 0;
}

.page-hero-photo img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  object-position: center 36%;
}

.course-hero-photo {
  overflow: hidden;
  background: var(--ink-soft);
}

.course-photo-credit {
  margin: 0;
  padding: 7px 11px 8px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
  text-align: right;
}

.course-photo-credit a {
  text-decoration-color: var(--line-strong);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.course-photo-credit a:hover {
  color: var(--paper);
}

.course-hero-photo img {
  display: block;
  aspect-ratio: 2 / 3;
  object-position: center 42%;
}

.page-hero-media {
  display: grid;
  align-self: start;
  gap: 34px;
}

.page-hero-story {
  align-items: start;
}

.page-hero-media .page-hero-photo img {
  max-height: 500px;
}

.profile-video-section {
  padding: clamp(68px, 9vw, 118px) 0;
  scroll-margin-top: 96px;
  background: var(--ink-soft);
  border-block: 1px solid var(--line);
}

.profile-video-shell {
  display: grid;
  width: var(--container);
  margin-inline: auto;
  place-items: center;
  text-align: center;
}

.profile-video-invitation {
  display: grid;
  max-width: 720px;
  place-items: center;
}

.profile-video-invitation h2 {
  max-width: 15ch;
  margin-bottom: 0;
}

.profile-video-toggle {
  margin-top: 30px;
}

.profile-video-shell.is-open .profile-video-invitation {
  display: none;
}

.profile-video-stage {
  width: min(100%, 390px);
  margin: 0;
}

.profile-video-stage[hidden] {
  display: none;
}

.profile-video-stage video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: var(--ink);
  border: 1px solid var(--line-strong);
  box-shadow: 18px 18px 0 rgba(139, 61, 255, 0.12);
}

.profile-video-stage figcaption {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.practice-list {
  border-bottom: 1px solid var(--line);
}

.practice-line {
  display: grid;
  padding: 30px 0;
  grid-template-columns: 82px minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 24px;
  border-top: 1px solid var(--line);
}

.practice-line .practice-number {
  color: var(--purple-light);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}

.practice-line h3,
.practice-line p {
  margin-bottom: 0;
}

.practice-line p {
  color: var(--muted);
}

.practice-heading h3 {
  margin-bottom: 7px;
}

.practice-heading .influence-note {
  color: var(--purple-light);
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

/* Storytelling Laurie */
.story {
  padding: 20px 0 80px;
}

.story-shell {
  width: min(920px, calc(100% - 48px));
  margin-inline: auto;
}

.story-chapter {
  display: grid;
  margin-bottom: 0;
  padding: 72px 0;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 34px;
  border-top: 1px solid var(--line);
}

.story-chapter .story-step {
  color: var(--purple-light);
}

.story-chapter h2 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
}

.story-chapter p:not(.story-step) {
  max-width: var(--measure);
  color: var(--muted);
}

.story-quote {
  margin: 32px 0 96px 144px;
  padding: 42px 0 42px 34px;
  border-left: 3px solid var(--purple-light);
}

.story-quote p {
  margin: 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 620;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.story-ending {
  padding: var(--section-space) 0;
  color: var(--ink);
  background: var(--purple-light);
  text-align: center;
}

.story-ending h2,
.story-ending p {
  color: inherit;
}

.story-ending .container {
  max-width: 900px;
}

.story-ending .button {
  margin-top: 18px;
  color: var(--paper);
  background: var(--ink);
}

/* Pages légales */
.legal-hero,
.legal-header {
  padding: 126px 0 54px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1,
.legal-header h1 {
  margin: 24px 0 18px;
}

.legal-back {
  color: var(--purple-light);
  font-weight: 700;
  text-underline-offset: 4px;
}

.legal-updated {
  color: var(--muted);
  font-size: 0.875rem;
}

.legal-content,
.legal-body {
  padding: 70px 0 110px;
}

.legal-content section,
.legal-body h2 {
  margin-top: 54px;
}

.legal-content section:first-child,
.legal-body h2:first-child {
  margin-top: 0;
}

.legal-content h2,
.legal-body h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
}

.legal-content h3,
.legal-body h3 {
  margin-top: 28px;
  font-size: 1.3rem;
}

.legal-content p,
.legal-content li,
.legal-content address,
.legal-body p,
.legal-body li,
.legal-body address {
  color: var(--muted);
}

.legal-content a,
.legal-body a {
  color: var(--purple-light);
}

.legal-content address,
.legal-body address {
  font-style: normal;
}

.legal-footer {
  padding-top: 24px;
}

/* Mouvement progressif */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .nav-menu {
    gap: 15px;
  }

  .nav-menu > a:not(.button) {
    font-size: 0.8125rem;
  }

  .hero-editorial,
  .page-hero-editorial,
  .page-hero {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.68fr);
    gap: 38px;
  }

  .trial-editorial {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 32px, 680px);
    --section-space: 48px;
  }

  body {
    font-size: 1.0625rem;
  }

  h1,
  .page-hero h1,
  .page-hero-editorial h1,
  .legal-hero h1,
  .legal-header h1 {
    font-size: clamp(2.625rem, 11vw, 3rem);
  }

  .hero-editorial h1 {
    max-width: 13ch;
    font-size: clamp(2.375rem, 10.5vw, 2.75rem);
  }

  h2 {
    font-size: clamp(2rem, 8vw, 2.375rem);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 68px;
    right: 16px;
    left: 16px;
    display: none;
    padding: 16px;
    align-items: stretch;
    flex-direction: column;
    gap: 3px;
    background: rgba(13, 13, 13, 0.99);
    border: 1px solid var(--line-strong);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu > a:not(.button),
  .nav-courses-link,
  .nav-courses-toggle {
    min-height: 44px;
    padding: 10px;
    font-size: 0.9375rem;
  }

  .nav-group {
    width: 100%;
  }

  .nav-group {
    grid-template-columns: minmax(0, 1fr) 44px;
  }

  .nav-courses-link {
    padding-left: 10px;
  }

  .nav-courses-toggle {
    width: 44px;
    justify-content: center;
  }

  .nav-courses-list {
    position: static;
    width: 100%;
    margin: 0 0 6px;
    padding: 2px 0 2px 12px;
    background: transparent;
    border: 0;
    border-left: 1px solid var(--purple);
    box-shadow: none;
    grid-column: 1 / -1;
  }

  .nav-courses-list a {
    padding-inline: 12px;
  }

  .editorial-section,
  .hero-editorial,
  .page-hero-editorial,
  .page-hero,
  .manifesto-grid,
  .trial-editorial,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .editorial-section {
    gap: 24px;
  }

  .section-rail,
  .faq-layout .section-rail {
    position: static;
  }

  .section-index {
    font-size: 2.8rem;
  }

  .hero-editorial {
    min-height: auto;
    padding: 106px 16px 48px;
  }

  .hero-copy {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .hero-photo {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .hero-video-slot {
    width: min(100%, 500px);
    margin-inline: auto;
    justify-self: center;
  }

  .hero-media-column {
    justify-items: center;
  }

  .hero-photo img {
    min-height: 280px;
    max-height: 520px;
  }

  .hero-editorial::after {
    right: -16%;
    bottom: 7%;
    width: 100%;
  }

  .hero-editorial::before {
    top: 42%;
    right: -10%;
    width: 46%;
    height: 18%;
    opacity: 0.72;
  }

  .music-strip,
  .practice-line,
  .story-chapter,
  .enrollment-routes {
    grid-template-columns: 1fr;
  }

  .enrollment-route {
    min-height: 0;
  }

  .route-number {
    margin-bottom: 36px;
  }

  .courses-section {
    width: min(100% - 32px, 680px);
  }

  .course-editorial {
    display: block;
  }

  .course-editorial-head {
    margin-bottom: 30px;
    align-items: start;
    gap: 30px;
  }

  .course-editorial-body {
    gap: 28px;
  }

  .course-meta {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .course-pillars li {
    padding: 20px 0;
    grid-template-columns: minmax(92px, 0.32fr) minmax(0, 1.68fr);
    gap: 16px;
  }

  .course-editorial-footer {
    margin-top: 30px;
    justify-content: flex-start;
  }

  .course-support-summary {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .music-strip {
    gap: 12px;
  }

  .difference-sequence li {
    grid-template-columns: 42px minmax(0, 1fr);
    padding-block: 20px;
    gap: 10px 14px;
  }

  .difference-sequence li::before {
    grid-row: 1 / span 2;
  }

  .difference-sequence li > p,
  .difference-sequence li > div {
    grid-column: 2;
  }

  .teacher-copy {
    margin-left: 0;
  }

  .teacher-word {
    margin-bottom: 12px;
  }

  .location-map-intro {
    align-items: stretch;
    flex-direction: column;
  }

  .location-map-actions {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-map {
    margin-bottom: 30px;
  }

  .location-map iframe {
    min-height: 360px;
  }

  .practical-lineup > article {
    padding-block: 20px;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 10px 20px;
  }

  .practical-lineup > article > :nth-child(3) {
    grid-column: 2;
  }

  .page-hero-editorial,
  .page-hero {
    min-height: auto;
    padding: 112px 0 60px;
  }

  .page-hero-photo {
    width: min(100%, 480px);
    margin-inline: auto;
  }

  .page-hero-media {
    width: min(100%, 480px);
    margin-inline: auto;
  }

  .story-chapter {
    gap: 10px;
  }

  .story-quote {
    margin-left: 0;
  }

  .section-intro {
    margin-bottom: 34px;
  }

  .final-cta {
    padding: 58px 0;
  }

  .social-shell {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .social-intro h2 {
    max-width: 18ch;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 580px) {
  .location-map-actions {
    grid-template-columns: 1fr;
  }

  .button-row,
  .button-row .button,
  .course-actions .button,
  .contact-panel .button {
    width: 100%;
  }

  .contact-line {
    gap: 8px;
    font-size: 1rem;
  }

  .hero-course-facts li {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .social-link {
    grid-template-columns: 1fr auto;
    gap: 6px 14px;
  }

  .social-link > span:nth-child(2) {
    grid-column: 1;
  }

  .social-arrow {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .hero-photo::before {
    inset: 9% 0 -12px 12%;
  }

  .hero-photo figcaption {
    right: 10px;
    bottom: 10px;
  }

  .hero-video-slot {
    box-shadow: 12px 12px 0 rgba(139, 61, 255, 0.12);
  }

  .hero-video-overlay {
    padding: 16px 16px 64px;
  }

  .hero-video-caption {
    right: 16px;
    bottom: 64px;
    left: 16px;
  }

  .hero-video-play {
    padding: 9px 14px 9px 10px;
  }

  .hero-video-play-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .enrollment-route {
    padding: 26px 22px;
  }

  .enrollment-route > .button {
    width: 100%;
  }

  .course-editorial {
    padding-block: 42px;
  }

  .course-support {
    padding: 22px;
  }

  .course-meta {
    gap: 18px 16px;
  }

  .course-pillars li {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .teacher-word {
    font-size: 5rem;
  }

  .contact-panel {
    padding: 24px;
  }

  .location-map-copy {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
  }

  .location-pin {
    width: 29px;
    height: 29px;
  }

  .location-pin::after {
    inset: 8px;
  }

  .location-map-load,
  .course-detail-cta {
    width: 100%;
  }

  .faq-a {
    padding-right: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom nav {
    flex-direction: column;
    gap: 8px;
  }

  .story-shell,
  .container-narrow {
    width: min(100% - 32px, 780px);
  }

  .story-quote {
    padding: 30px 0 30px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none !important;
  }
}
