:root {
  --white: #fffdfb;
  --paper: #ffffff;
  --rose: #f8d7df;
  --pink: #df5b89;
  --pink-deep: #a8275b;
  --gold: #c5a15a;
  --gold-deep: #9f7934;
  --ink: #2f2430;
  --muted: #70636d;
  --line: rgba(197, 161, 90, 0.34);
  --soft-line: rgba(223, 91, 137, 0.16);
  --shadow: 0 26px 80px rgba(74, 45, 56, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(197, 161, 90, 0.1) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, rgba(223, 91, 137, 0.08), transparent 34%),
    var(--white);
  color: var(--ink);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px clamp(18px, 4vw, 52px);
  background: rgba(255, 253, 251, 0.9);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(74, 45, 56, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 78px;
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.main-nav a {
  min-height: 34px;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.main-nav a.active,
.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--pink-deep);
  background: rgba(248, 215, 223, 0.56);
}

.language-select {
  flex: 0 0 auto;
}

.language-select select {
  width: auto;
  min-height: 34px;
  border-radius: 999px;
  padding: 7px 30px 7px 12px;
  border-color: var(--line);
  background-color: rgba(255, 255, 255, 0.82);
  color: var(--pink-deep);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.view {
  display: none;
}

.view.active {
  display: grid;
}

.home-view {
  position: relative;
  min-height: calc(100vh - 74px);
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.82fr);
  grid-template-areas:
    "copy portrait"
    "contact-title portrait"
    "info portrait"
    "panel panel";
  column-gap: clamp(14px, 2.2vw, 34px);
  row-gap: clamp(18px, 3vw, 38px);
  align-items: center;
  padding: clamp(30px, 5vw, 70px) clamp(20px, 6vw, 92px);
  overflow: hidden;
}

.home-view::before {
  content: "ROJIN";
  position: absolute;
  left: clamp(18px, 5vw, 82px);
  bottom: clamp(18px, 4vw, 52px);
  z-index: -1;
  color: rgba(197, 161, 90, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(86px, 16vw, 220px);
  line-height: 0.8;
  white-space: nowrap;
}

.home-view::after {
  content: "";
  position: absolute;
  top: clamp(70px, 12vw, 140px);
  right: clamp(18px, 5vw, 90px);
  z-index: -1;
  width: min(42vw, 620px);
  height: min(42vw, 620px);
  border: 1px solid rgba(197, 161, 90, 0.22);
  border-radius: 50%;
}

.home-copy {
  grid-area: copy;
  max-width: 790px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pink-deep);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.02;
  color: var(--gold-deep);
  font-weight: 500;
  white-space: nowrap;
  overflow-wrap: normal;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.02;
  color: var(--gold-deep);
  font-weight: 500;
}

.lead {
  max-width: 590px;
  margin: 22px 0 0;
  color: #5d505b;
  font-size: clamp(19px, 2.2vw, 27px);
  line-height: 1.55;
  border-left: 2px solid var(--pink);
  padding-left: 18px;
}

.home-actions,
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.button,
.back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
  text-decoration: none;
  font: inherit;
  font-weight: 820;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--pink), #c23d73);
  color: #fff;
  box-shadow: 0 18px 42px rgba(223, 91, 137, 0.24);
}

.button.quiet {
  background: rgba(255, 255, 255, 0.62);
}

.button.gold {
  border-color: transparent;
  background: var(--gold);
  color: #fff;
}

.button:hover,
.back-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(74, 45, 56, 0.12);
}

.button.wide {
  width: 100%;
}

.portrait-frame {
  position: relative;
  grid-area: portrait;
  align-self: stretch;
  min-height: 610px;
  margin: 0;
  border: 0;
  border-radius: 8px 8px 70px 8px;
  overflow: visible;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.portrait-frame::before,
.portrait-frame::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.portrait-frame::before {
  inset: -14px 14px 14px -14px;
  border: 1px solid var(--gold);
  border-radius: 8px 8px 78px 8px;
}

.portrait-frame::after {
  right: -22px;
  top: 46px;
  width: 44px;
  height: 62%;
  border-right: 3px solid var(--pink);
  border-top: 3px solid var(--pink);
  border-bottom: 3px solid var(--pink);
  border-radius: 0 80px 80px 0;
}

.portrait-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 54% 50%;
  border-radius: 8px 8px 70px 8px;
}

.home-contact {
  grid-area: info;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-self: end;
  max-width: 760px;
}

.contact-heading {
  grid-area: contact-title;
  scroll-margin-top: 96px;
  align-self: end;
  margin-top: clamp(18px, 4vw, 44px);
}

.contact-heading h2 {
  color: var(--pink);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1;
}

.contact-heading h2::after {
  content: "";
  display: block;
  width: 76px;
  height: 4px;
  margin-top: 12px;
  background: var(--pink);
}

.home-contact a,
.home-contact div {
  position: relative;
  min-height: 58px;
  display: grid;
  gap: 12px;
  padding: 15px 16px;
  border: 1px solid rgba(197, 161, 90, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 215, 223, 0.72)),
    var(--paper);
  color: var(--ink);
  text-decoration: none;
  font-weight: 820;
  box-shadow: 0 14px 34px rgba(74, 45, 56, 0.07);
  overflow: hidden;
}

.home-contact span {
  color: var(--pink-deep);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.home-contact strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 780;
  overflow-wrap: anywhere;
}

.home-contact a::before,
.home-contact div::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.home-contact a::after,
.home-contact div::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 10px;
  height: 1px;
  background: linear-gradient(90deg, var(--pink), transparent);
  opacity: 0.35;
}

.home-contact a:hover,
.home-contact a:focus-visible {
  border-color: rgba(223, 91, 137, 0.42);
  color: var(--gold-deep);
  transform: translateY(-1px);
}

.page-view {
  position: relative;
  min-height: calc(100vh - 74px);
  padding: clamp(28px, 5vw, 72px) clamp(20px, 6vw, 92px);
  overflow: hidden;
}

.page-view::before {
  display: none;
}

.page-shell {
  width: min(1120px, 100%);
  margin: auto;
}

.back-button {
  margin-bottom: 28px;
  min-height: 38px;
  padding: 9px 14px;
  color: var(--muted);
}

.page-shell > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.65;
}

.certificates-shell {
  width: min(1320px, 100%);
}

.certificates-intro {
  max-width: 820px;
  margin-top: 12px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.65;
}

.certificates-intro p {
  margin: 0 0 10px;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(14px, 2vw, 22px);
  align-items: start;
  margin-top: clamp(26px, 4vw, 44px);
}

.certificate-card {
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(86, 66, 70, 0.12);
}

.certificate-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  background: #fff;
}

.certificate-card-wide {
  grid-column: span 2;
}

.media-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.media-strip figure,
.media-placeholder {
  min-height: 330px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 215, 223, 0.26)),
    var(--paper);
  box-shadow: 0 16px 42px rgba(74, 45, 56, 0.08);
}

.media-strip img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.media-placeholder {
  display: grid;
  place-items: center;
  color: var(--gold);
  font-weight: 850;
}

.danse-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.9fr);
  column-gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.danse-shell .back-button,
.danse-shell .eyebrow,
.danse-shell h2,
.danse-shell > p,
.section-tabs,
.discipline-panel > p {
  grid-column: 1;
}

.section-tabs {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  margin: 4px 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(74, 45, 56, 0.07);
}

.section-tabs button {
  min-height: 34px;
  padding: 8px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  white-space: nowrap;
}

.section-tabs button.active {
  background: rgba(223, 91, 137, 0.88);
  color: #fff;
}

.section-tabs button:hover,
.section-tabs button:focus-visible {
  color: var(--pink-deep);
  background: rgba(248, 215, 223, 0.68);
}

.section-tabs button.active:hover,
.section-tabs button.active:focus-visible {
  color: #fff;
  background: var(--pink);
}

.discipline-panel {
  display: none;
}

.discipline-panel.active {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.9fr);
  column-gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.atelier-panel {
  grid-column: 1 / -1;
  width: min(960px, 100%);
  margin-top: clamp(16px, 4vw, 42px);
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid rgba(197, 161, 90, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 215, 223, 0.72)),
    var(--paper);
  box-shadow: 0 18px 48px rgba(74, 45, 56, 0.1);
}

.atelier-panel h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold-deep);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
}

.atelier-panel p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.65;
}

.atelier-video-section {
  margin-top: 26px;
}

.atelier-copy {
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: start;
  margin-top: clamp(18px, 3vw, 34px);
}

.atelier-copy p {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.65;
}

.atelier-video-square {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: start;
  justify-self: start;
  width: min(100%, 780px);
  aspect-ratio: 1;
  margin-top: clamp(12px, 2vw, 22px);
  padding: clamp(20px, 3.4vw, 42px);
  border: 1px solid rgba(214, 126, 168, 0.42);
  border-radius: 8px;
  background: linear-gradient(135deg, #f3c2d5, #df86ae);
  box-shadow: 0 28px 72px rgba(214, 126, 168, 0.26);
}

.atelier-video-square .video-book,
.atelier-video-square .youtube-card,
.atelier-video-square .youtube-card-media {
  height: 100%;
}

.atelier-video-square .video-book {
  padding-inline: 56px;
}

.atelier-video-square .youtube-card-media {
  min-height: 0;
  border-color: rgba(255, 253, 251, 0.42);
  background: #df86ae;
}

.atelier-video-square .youtube-card-media img {
  height: 100%;
}

.discipline-panel > p {
  grid-row: 1;
}

.discipline-panel .photo-book {
  grid-row: 1;
}

.discipline-panel .dance-video-section,
.discipline-panel .composition-section {
  grid-column: 1 / -1;
}

.photo-book {
  grid-column: 2;
  grid-row: 1 / span 5;
  position: relative;
  display: block;
  padding-inline: 70px;
}

.book-page {
  margin: 0;
  min-height: 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  display: grid;
  place-items: center;
}

.book-page img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(68vh, 680px);
  display: block;
  object-fit: contain;
  object-position: center;
  background: transparent;
  border-radius: 22px;
}

.book-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 215, 223, 0.6)),
    var(--paper);
  color: var(--pink-deep);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.book-arrow.prev {
  left: 0;
}

.book-arrow.next {
  right: 0;
}

.book-arrow:hover,
.book-arrow:focus-visible {
  background: var(--pink);
  color: #fff;
  transform: translateY(-50%);
}

.dance-video-section {
  grid-column: 1 / -1;
  width: min(1280px, 100%);
  justify-self: center;
  margin-top: clamp(34px, 6vw, 86px);
  padding: clamp(18px, 3.2vw, 34px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(248, 215, 223, 0.94), rgba(223, 91, 137, 0.5)),
    radial-gradient(circle at 92% 8%, rgba(197, 161, 90, 0.28), transparent 34%),
    #f8d7df;
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(74, 45, 56, 0.1);
}

.musique-video-section {
  margin-top: clamp(18px, 3vw, 38px);
}

.arts-video-section {
  margin-top: clamp(30px, 5vw, 64px);
}

.instagram-book {
  position: relative;
  padding-inline: 70px;
}

.instagram-frame {
  width: min(560px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(74, 45, 56, 0.12);
}

.instagram-frame iframe {
  width: 100%;
  height: min(78vh, 720px);
  min-height: 560px;
  display: block;
  border: 0;
  background: var(--paper);
}

.instagram-open {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  justify-self: center;
  margin: 14px auto 0;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 253, 251, 0.92);
  color: var(--pink-deep);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(47, 36, 48, 0.12);
}

.composition-section {
  grid-column: 1 / -1;
  width: min(980px, 100%);
  justify-self: center;
  margin-top: clamp(28px, 4.5vw, 62px);
  padding: clamp(18px, 3.2vw, 34px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 215, 223, 0.72)),
    var(--paper);
  box-shadow: 0 18px 48px rgba(74, 45, 56, 0.1);
}

.soundcloud-player {
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(74, 45, 56, 0.08);
}

.soundcloud-player iframe {
  width: 100%;
  height: 166px;
  display: block;
  border: 0;
}

.musique-shell .photo-book {
  grid-row: 1;
  align-self: center;
}

.musique-shell > p:not(.eyebrow),
.musique-shell .discipline-panel > p:not(.eyebrow) {
  grid-row: 1;
}

.musique-shell .book-page {
  align-items: start;
}

.arts-shell .photo-book {
  grid-row: 1;
  align-self: center;
}

.arts-shell > p:not(.eyebrow),
.arts-shell .discipline-panel > p:not(.eyebrow) {
  grid-row: 1;
}

@media (min-width: 981px) {
  .musique-shell,
  .arts-shell {
    align-items: start;
  }

  .musique-shell .photo-book,
  .arts-shell .photo-book {
    align-self: start;
    margin-top: 4px;
  }

  .arts-shell .book-page {
    min-height: auto;
    align-items: start;
  }

  .arts-shell .photo-book {
    margin-top: 4px;
  }

  .danse-shell .photo-book {
    align-self: start;
    margin-top: 4px;
  }
}

.video-heading {
  margin-bottom: 14px;
}

.video-heading .eyebrow {
  margin-bottom: 0;
  color: var(--pink-deep);
}

.youtube-card {
  display: grid;
  gap: 12px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.video-book {
  position: relative;
  padding-inline: 70px;
}

.youtube-card-media {
  position: relative;
  display: block;
  min-height: min(72vh, 680px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(248, 215, 223, 0.7), rgba(197, 161, 90, 0.2)),
    var(--paper);
}

.youtube-card-media img {
  width: 100%;
  height: min(72vh, 680px);
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(0.96);
}

.youtube-card-media iframe {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.youtube-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(47, 36, 48, 0.08), rgba(47, 36, 48, 0.34));
}

.youtube-card-media.is-playing img,
.youtube-card-media.is-playing::after,
.youtube-card-media.is-playing .youtube-play,
.youtube-card-media.is-playing .youtube-watch {
  opacity: 0;
  pointer-events: none;
}

.youtube-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(74px, 10vw, 112px);
  height: clamp(52px, 7vw, 78px);
  border-radius: 18px;
  transform: translate(-50%, -50%);
  background: #ef3026;
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  padding-left: 5px;
  box-shadow: 0 18px 44px rgba(47, 36, 48, 0.24);
}

.youtube-watch {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(47, 36, 48, 0.72);
  color: #fff;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 850;
}

.youtube-fallback {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 5;
  display: none;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 253, 251, 0.92);
  color: var(--pink-deep);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(47, 36, 48, 0.18);
}

.youtube-card-media.is-playing .youtube-fallback {
  display: inline-flex;
}

.youtube-card-title {
  color: var(--pink-deep);
  font-weight: 850;
}

.youtube-card:hover .youtube-play,
.youtube-card:focus-visible .youtube-play {
  transform: translate(-50%, -50%) scale(1.04);
}

.atelier-video-card {
  min-width: 0;
}

.compact-video-book {
  padding-inline: 42px;
}

.compact-youtube-media {
  min-height: 340px;
}

.compact-youtube-media img {
  height: 340px;
}

.compact-video-book .video-arrow {
  width: 38px;
  height: 38px;
  font-size: 26px;
}

.compact-video-book .youtube-play {
  width: 72px;
  height: 50px;
  border-radius: 16px;
  font-size: 28px;
}

.compact-video-book .youtube-watch {
  right: 12px;
  bottom: 12px;
  padding: 9px 12px;
  font-size: 13px;
}

.video-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 215, 223, 0.6)),
    var(--paper);
  color: var(--pink-deep);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.video-arrow.prev {
  left: 0;
}

.video-arrow.next {
  right: 0;
}

.video-arrow:hover,
.video-arrow:focus-visible {
  background: var(--pink);
  color: #fff;
  transform: translateY(-50%);
}

.simple-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0;
}

.simple-list span {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 215, 223, 0.32)),
    var(--paper);
  font-weight: 820;
}

.booking-shell {
  width: min(1180px, 100%);
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 420px));
  gap: 14px;
  margin: 28px 0;
}

.booking-class-card {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 270px;
  padding: 14px;
  border: 1px solid rgba(197, 161, 90, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 215, 223, 0.52)),
    var(--paper);
  color: var(--ink);
  text-align: left;
  font: inherit;
  cursor: pointer;
  box-shadow: 0 16px 42px rgba(74, 45, 56, 0.08);
}

.booking-class-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.booking-class-card span {
  color: var(--pink-deep);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.booking-class-card strong {
  color: var(--gold-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 600;
}

.booking-class-card small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.booking-class-card.active {
  border-color: var(--pink);
  box-shadow: 0 20px 52px rgba(223, 91, 137, 0.18);
}

.booking-class-card.active::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--pink);
}

.muted-card {
  opacity: 0.72;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 18px;
  align-items: start;
  margin-top: 28px;
}

.booking-form,
.payment-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(74, 45, 56, 0.08);
}

.booking-form {
  display: grid;
  gap: 14px;
}

.selected-course,
.availability-note {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(223, 91, 137, 0.2);
  border-radius: 8px;
  background: rgba(248, 215, 223, 0.32);
}

.selected-course span,
.availability-note strong {
  color: var(--pink-deep);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.selected-course strong {
  color: var(--ink);
  font-size: 18px;
}

.formule-info,
.payment-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: -4px;
}

.formule-info > span,
.payment-info > span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(197, 161, 90, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
  font-size: 13px;
  font-weight: 820;
}

.availability-note span {
  color: var(--muted);
  font-weight: 720;
}

.schedule-picker {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(197, 161, 90, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.schedule-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.schedule-head strong,
.schedule-day-title {
  color: var(--pink-deep);
  font-weight: 850;
}

.schedule-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.schedule-day {
  position: relative;
  display: grid;
  grid-template-columns: 120px repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: center;
}

.schedule-day-title {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
}

.info-dot {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(248, 215, 223, 0.9);
  color: var(--pink-deep);
  font-size: 12px;
  font-weight: 900;
  cursor: help;
}

.info-bubble {
  position: absolute;
  left: 0;
  top: 30px;
  z-index: 4;
  width: min(280px, 90vw);
  display: none;
  padding: 10px 12px;
  border: 1px solid rgba(223, 91, 137, 0.2);
  border-radius: 8px;
  background: rgba(255, 253, 251, 0.96);
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 14px 28px rgba(74, 45, 56, 0.12);
}

.info-dot:hover + .info-bubble,
.info-dot:focus + .info-bubble {
  display: block;
}

.booking-total {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid rgba(223, 91, 137, 0.26);
  border-radius: 8px;
  background: rgba(248, 215, 223, 0.34);
}

.booking-total span {
  color: var(--pink-deep);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.booking-total strong {
  color: var(--gold-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 46px);
  font-weight: 500;
  line-height: 1;
}

.booking-total small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.slot {
  min-height: 44px;
  border: 1px solid rgba(197, 161, 90, 0.34);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 820;
  cursor: pointer;
}

.slot.active,
.slot:hover,
.slot:focus-visible {
  border-color: var(--pink);
  background: rgba(248, 215, 223, 0.72);
  color: var(--pink-deep);
}

.cash-note {
  margin: -8px 0 14px;
  color: var(--pink-deep);
  font-weight: 850;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 820;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-row > label {
  flex: 1 1 210px;
}

.price {
  margin: 8px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold);
  font-size: 48px;
}

.payment-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.home-contact-panel {
  grid-area: panel;
  scroll-margin-top: 96px;
  margin-top: clamp(18px, 4vw, 42px);
  padding: clamp(26px, 5vw, 62px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(248, 215, 223, 0.94), rgba(223, 91, 137, 0.5)),
    radial-gradient(circle at 92% 8%, rgba(197, 161, 90, 0.28), transparent 34%),
    #f8d7df;
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(74, 45, 56, 0.24);
}

.contact-form {
  width: min(100%, 1080px);
  display: grid;
  gap: 24px;
}

.contact-form label {
  color: var(--ink);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 850;
  line-height: 1.2;
}

.contact-form input,
.contact-form textarea {
  min-height: 54px;
  margin-top: 9px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  font-size: 18px;
}

.contact-form textarea {
  min-height: 170px;
}

.contact-submit {
  justify-self: start;
  min-width: 190px;
  min-height: 56px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 248, 244, 0.92);
  color: #7d3157;
  font: inherit;
  font-size: 24px;
  font-weight: 520;
  cursor: pointer;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: #fff;
}

.hidden-field {
  display: none;
}

.form-status {
  min-height: 28px;
  margin: 0;
  color: #7d3157;
  font-size: 17px;
  font-weight: 750;
}

.form-status.is-error {
  color: #9b1c31;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 6vw, 82px);
}

.thank-you-panel {
  width: min(680px, 100%);
  padding: clamp(28px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 215, 223, 0.62)),
    var(--paper);
  box-shadow: var(--shadow);
}

.thank-you-panel h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 10vw, 104px);
  font-weight: 500;
  color: var(--pink-deep);
}

.thank-you-panel p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.6;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 18px;
  padding: 26px clamp(20px, 6vw, 92px);
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 251, 0.92);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  color: var(--gold-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 600;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .language-select select {
    min-height: 38px;
  }

  .home-view {
    grid-template-columns: 1fr;
    grid-template-areas:
      "portrait"
      "copy"
      "contact-title"
      "info"
      "panel";
    align-items: start;
  }

  .portrait-frame {
    min-height: 420px;
    width: 100%;
  }

  .portrait-frame::after {
    display: none;
  }

  .booking-layout,
  .booking-grid,
  .media-strip,
  .certificates-grid,
  .simple-list,
  .home-contact,
  .site-footer,
  .danse-shell,
  .discipline-panel.active {
    grid-template-columns: 1fr;
  }

  .certificate-card-wide {
    grid-column: auto;
  }

  .schedule-day {
    grid-template-columns: 1fr;
  }

  .danse-shell .back-button,
  .danse-shell .eyebrow,
  .danse-shell h2,
  .danse-shell > p,
  .atelier-copy,
  .atelier-video-square,
  .discipline-panel > p,
  .section-tabs,
  .photo-book {
    grid-column: 1;
  }

  .photo-book,
  .atelier-video-square {
    grid-row: auto;
  }

  .discipline-panel > p,
  .discipline-panel .photo-book,
  .discipline-panel .dance-video-section,
  .discipline-panel .composition-section {
    grid-row: auto;
  }

  .musique-shell > p:not(.eyebrow),
  .musique-shell .discipline-panel > p:not(.eyebrow),
  .musique-shell .photo-book,
  .arts-shell > p:not(.eyebrow),
  .arts-shell .discipline-panel > p:not(.eyebrow),
  .arts-shell .photo-book {
    grid-row: auto;
  }

  .atelier-panel {
    grid-column: 1;
  }

  .atelier-video-square {
    width: 100%;
    max-width: 620px;
  }

  .musique-shell .book-page,
  .arts-shell .book-page {
    align-items: center;
  }

  .video-heading {
    align-items: start;
    flex-direction: column;
  }

}

@media (min-width: 700px) and (max-width: 980px) {
  .danse-shell [data-tab-panel="danse:ateliers"].active,
  .musique-shell [data-tab-panel="musique:ateliers"].active {
    grid-template-columns: 1fr;
  }

  .danse-shell [data-tab-panel="danse:ateliers"] .atelier-copy,
  .musique-shell [data-tab-panel="musique:ateliers"] .atelier-copy {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .danse-shell [data-tab-panel="danse:ateliers"] .atelier-video-square,
  .musique-shell [data-tab-panel="musique:ateliers"] .atelier-video-square {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand img {
    width: 68px;
  }

  .main-nav a {
    font-size: 12px;
    padding-inline: 8px;
  }

  .home-view,
  .page-view {
    min-height: auto;
    padding: 22px 16px 42px;
  }

  h1,
  h2 {
    font-size: 30px;
  }

  h1 {
    font-size: clamp(23px, 6.2vw, 30px);
    letter-spacing: -0.2px;
  }

  .lead {
    font-size: 18px;
  }

  .portrait-frame {
    min-height: 360px;
  }

  .home-contact {
    grid-template-columns: 1fr;
  }

  .button,
  .back-button {
    width: 100%;
  }

  .section-tabs {
    width: 100%;
  }

  .section-tabs button {
    flex: 1;
  }

  .photo-book {
    padding-inline: 50px;
  }

  .book-arrow {
    width: 42px;
    height: 42px;
    font-size: 28px;
  }

  .book-page,
  .book-page img {
    min-height: 0;
  }

  .book-page img {
    max-height: 360px;
  }

  .video-book {
    padding-inline: 50px;
  }

  .instagram-book {
    padding-inline: 50px;
  }

  .video-arrow {
    width: 42px;
    height: 42px;
    font-size: 28px;
  }

  .youtube-card-media {
    min-height: 320px;
  }

  .youtube-card-media img {
    height: 320px;
  }

  .instagram-frame iframe {
    min-height: 520px;
  }

  .youtube-watch {
    right: 10px;
    bottom: 12px;
    padding: 9px 12px;
    font-size: 14px;
  }

  .youtube-fallback {
    right: 10px;
    top: 10px;
    padding: 8px 11px;
    font-size: 12px;
  }

  .home-contact-panel {
    padding: 18px;
  }

  .contact-form {
    gap: 18px;
  }

  .contact-form label {
    font-size: 18px;
  }

  .contact-form input,
  .contact-form textarea {
    min-height: 52px;
    font-size: 17px;
  }

  .contact-form textarea {
    min-height: 150px;
  }

  .contact-submit {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    font-size: 22px;
  }
}
