@charset "UTF-8";
@font-face {
  font-family: "Epilogue";
  font-style: normal;
  font-weight: 400 900;
  src: url("fonts/epilogue-latin.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 900;
  src: url("fonts/manrope-latin.woff2") format("woff2");
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 7.5rem;
}

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

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

:root {
  --brand: #41baae;
  --primary: var(--brand);
  --primary-text: #0f766e;
  --primary-ink: #062d29;
  --primary-soft: color-mix(in srgb, var(--primary) 10%, #ffffff);
  --primary-line: color-mix(in srgb, var(--primary) 28%, #d5e9e5);
  --accent: var(--primary-text);
  --accent-ink: #ffffff;
  --icon-mail: url("icons/mail.svg");
  --icon-newsletter: url("icons/newsletter.svg");
  --icon-instagram: url("icons/instagram.svg");
  --icon-facebook: url("icons/facebook.svg");
  --icon-youtube: url("icons/youtube.svg");
  --icon-pin: url("icons/pin.svg");
  --icon-people: url("icons/people.svg");
  --yellow: #ffd64d;
  --course-level-1: #4ed9d7;
  --course-level-2: #2f8cff;
  --course-level-3: #0a6084;
  --course-level-4: #c13cc6;
  --course-musicality: #ff5f9f;
  --course-lead-follow: var(--course-musicality);
  --course-roots: #e7c83a;
  --course-practice: #f6c983;
  --schedule-exception-text: #7b1d1d;
  --max: 82rem;
}

body {
  min-width: 20rem;
  margin: 0;
  font-family: var(--font-body);
  line-height: var(--body-line-height);
  color: var(--ink);
  background: var(--page);
}

body > header,
body > main,
body > footer {
  width: var(--page-shell-width);
  margin-inline: var(--page-shell-margin-inline);
}

body > header nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
body > header nav ul li {
  margin: 0;
}

body > footer .contact-links a::before {
  display: inline-block;
  flex: none;
  width: 1.25rem;
  height: 1.25rem;
  content: "";
  background: currentColor;
  -webkit-mask: var(--icon) center/contain no-repeat;
  mask: var(--icon) center/contain no-repeat;
}
body > footer .contact-links a[href^="mailto:"] {
  --icon: var(--icon-mail);
}
body > footer .contact-links a[href*="share-eu1.hsforms.com"] {
  --icon: var(--icon-newsletter);
}
body > footer .contact-links a[href*="instagram.com"] {
  --icon: var(--icon-instagram);
}
body > footer .contact-links a[href*="facebook.com"] {
  --icon: var(--icon-facebook);
}
body > footer .contact-links a[href*="youtube.com"] {
  --icon: var(--icon-youtube);
}

body > main > section.orientation {
  display: grid;
  gap: 0.9rem;
  align-items: start;
}
body > main > section.orientation h2,
body > main > section.orientation p,
body > main > section.orientation ul {
  margin-bottom: 0;
}
body > main > section.orientation p {
  max-width: 52rem;
}
body > main > section.orientation ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0;
  margin-top: 0.25rem;
  list-style: none;
}
body > main > section.orientation li {
  margin-top: 0;
}
body > main > section.orientation a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.55rem 0.9rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: 999rem;
}
body > main > section.orientation li:first-child a {
  color: var(--accent-ink);
  background: var(--accent);
  border: 1px solid var(--accent);
}
body > main > section.orientation li:not(:first-child) a {
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line));
}

body > main > figure:has(> blockquote) blockquote,
body > main > figure:has(> blockquote) p {
  margin: 0;
}

:focus-visible {
  outline: 0.2rem solid var(--focus);
  outline-offset: 0.2rem;
}

body > a:first-child {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--yellow);
  transform: translateY(-140%);
}
body > a:first-child:focus {
  transform: translateY(0);
}

body#home #gallery {
  display: grid;
  gap: 0.85rem;
}
body#home #gallery > div {
  position: relative;
  min-height: 21rem;
  overflow: hidden;
  touch-action: pan-y;
  border-radius: calc(var(--radius) - 0.1rem);
  box-shadow: 0 1rem 2rem rgba(23, 50, 75, 0.12);
}
body#home #gallery figure {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 260ms ease, transform 360ms ease;
  will-change: opacity, transform;
}
body#home #gallery figure[data-active] {
  opacity: 1;
  transform: scale(1);
}
body#home #gallery figure:nth-child(1) img, body#home #gallery figure:nth-child(2) img {
  object-position: center 42%;
}
body#home #gallery figure:nth-child(3) img, body#home #gallery figure:nth-child(4) img {
  object-position: center 38%;
}
body#home #gallery figure:nth-child(5) img {
  object-position: center 28%;
}
body#home #gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
body#home #gallery nav,
body#home #gallery ol {
  display: flex;
  align-items: center;
}
body#home #gallery nav {
  gap: 0.8rem;
  justify-content: center;
}
body#home #gallery nav > button {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  min-height: 2.35rem;
  padding: 0;
  font-size: 0;
  line-height: 1;
  color: inherit;
  background: rgba(255, 255, 255, 0.92);
  border: 0.08rem solid color-mix(in srgb, var(--primary) 18%, transparent);
  border-radius: 999rem;
}
body#home #gallery nav > button::before {
  font-size: 1.45rem;
  line-height: 1;
}
body#home #gallery nav > button[data-dir=prev]::before {
  content: "‹";
}
body#home #gallery nav > button[data-dir=next]::before {
  content: "›";
}
body#home #gallery ol {
  flex-wrap: wrap;
  gap: 0.42rem;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
body#home #gallery ol li {
  margin-top: 0;
}
body#home #gallery ol button {
  width: 0.55rem;
  min-height: 0.55rem;
  padding: 0;
  overflow: hidden;
  font-size: 0;
  color: inherit;
  background: rgba(255, 255, 255, 0.92);
  border: 0.08rem solid color-mix(in srgb, var(--primary) 18%, transparent);
  border-radius: 999rem;
  transition: width 180ms ease, background-color 180ms ease, border-color 180ms ease;
}
body#home #gallery ol button[aria-current=true] {
  width: 1.35rem;
  color: var(--accent-ink);
  background: var(--accent);
  border-color: var(--accent);
}
body#home #gallery button {
  font: inherit;
  cursor: pointer;
}
body#home #video {
  display: grid;
  gap: 1rem;
}
body#home #video h2,
body#home #video p,
body#home #video a {
  color: #ffffff;
}
body#home #video > div:last-child {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: calc(var(--radius) - 0.1rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.18);
}
body#home #video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
body#home #video .video-facade {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
body#home #video .video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body#home #video .video-facade span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  background: rgba(0, 0, 0, 0.78);
  border: 0.12rem solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
body#home #video .video-facade span::before {
  width: 0;
  height: 0;
  margin-left: 0.25rem;
  content: "";
  border-top: 0.65rem solid transparent;
  border-bottom: 0.65rem solid transparent;
  border-left: 1rem solid #ffffff;
}
body#home #video .video-facade:hover span, body#home #video .video-facade:focus-visible span {
  background: #b91c1c;
}

body#about #team > div {
  display: grid;
  gap: 1rem;
}
body#about #team > div > article {
  display: grid;
  gap: 0.95rem;
  align-content: start;
  height: 100%;
  padding: 1rem;
  background: color-mix(in srgb, #ffffff 88%, color-mix(in srgb, var(--primary) 6%, transparent));
  border: 0.08rem solid color-mix(in srgb, var(--line) 88%, color-mix(in srgb, var(--primary) 12%, transparent));
  border-radius: calc(var(--radius) - 0.08rem);
}
body#about #school figure,
body#about #team figure {
  position: relative;
  aspect-ratio: 1;
  padding: 0.35rem;
  margin: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 18%, transparent), rgba(255, 248, 235, 0.9));
  border-radius: 999rem;
  box-shadow: 0 0.65rem 1.2rem rgba(17, 24, 39, 0.07);
}
body#about #school figure::after,
body#about #team figure::after {
  position: absolute;
  inset: 0.2rem;
  pointer-events: none;
  content: "";
  border: 0.08rem solid rgba(255, 255, 255, 0.9);
  border-radius: 999rem;
}
body#about #school figure img,
body#about #team figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  background: #e8f1ec;
  border-radius: 999rem;
  box-shadow: 0 0.35rem 0.8rem rgba(17, 24, 39, 0.1);
}
body#about #team figure {
  justify-self: start;
  width: min(100%, 9rem);
}
body#about #team h3 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0;
  text-align: left;
}
body#about #team h3 a[href*="instagram.com"] {
  --icon: var(--icon-instagram);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  overflow: hidden;
  font-size: 0;
  color: var(--accent);
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  border: 0.08rem solid color-mix(in srgb, var(--primary) 18%, transparent);
  border-radius: 999rem;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}
body#about #team h3 a[href*="instagram.com"]:hover, body#about #team h3 a[href*="instagram.com"]:focus-visible {
  background: color-mix(in srgb, var(--primary) 18%, transparent);
  border-color: color-mix(in srgb, var(--primary) 35%, transparent);
  transform: translateY(-0.05rem);
}
body#about #team h3 a[href*="instagram.com"]::before {
  display: block;
  flex: none;
  width: 1.25rem;
  height: 1.25rem;
  content: "";
  background: currentColor;
  -webkit-mask: var(--icon) center/contain no-repeat;
  mask: var(--icon) center/contain no-repeat;
}
body#about #team p {
  max-width: 58ch;
  margin: 0;
  text-align: left;
  text-wrap: pretty;
}
body#about #school article > div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 10.5rem));
  gap: 0.75rem;
  justify-content: start;
}
body#about #school figure {
  width: min(100%, 10.5rem);
}

@media (min-width: 64rem) {
  body#venues main > section:not(#intro) {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 26rem);
    align-items: start;
  }
  body#venues main > section:not(#intro) figure {
    grid-row: 1/span 6;
    grid-column: 2;
    justify-self: end;
    width: 100%;
  }
}
body#levels section.class {
  padding: 1rem 1rem 1rem clamp(1.25rem, 3vw, 2rem);
  scroll-margin-top: 7rem;
  background: color-mix(in srgb, var(--course-accent) 8%, #ffffff);
  border-left: 0;
  box-shadow: inset 0.35rem 0 0 var(--course-accent);
}
body#levels section.class h2,
body#levels section.class h3 {
  color: var(--ink);
}
body#levels section.class.level.\31  {
  --course-accent: var(--course-level-1);
}
body#levels section.class.level.\32  {
  --course-accent: var(--course-level-2);
}
body#levels section.class.level.\33  {
  --course-accent: var(--course-level-3);
}
body#levels section.class.level.\34  {
  --course-accent: var(--course-level-4);
}
body#levels section.class.lead-follow {
  --course-accent: var(--course-lead-follow);
}
body#levels section.class.roots {
  --course-accent: var(--course-roots);
}

body#classes .class.level.\31 ,
body#venues .class.level.\31  {
  --course-accent: var(--course-level-1);
}
body#classes .class.level.\32 ,
body#venues .class.level.\32  {
  --course-accent: var(--course-level-2);
}
body#classes .class.level.\33 ,
body#venues .class.level.\33  {
  --course-accent: var(--course-level-3);
}
body#classes .class.level.\34 ,
body#venues .class.level.\34  {
  --course-accent: var(--course-level-4);
}
body#classes .class.musicality,
body#venues .class.musicality {
  --course-accent: var(--course-musicality);
}
body#classes .class.lead-follow,
body#venues .class.lead-follow {
  --course-accent: var(--course-lead-follow);
}
body#classes .class.roots,
body#venues .class.roots {
  --course-accent: var(--course-roots);
}
body#classes .class.pratica,
body#venues .class.pratica {
  --course-accent: var(--course-practice);
}
body#classes .free-practice,
body#venues .free-practice {
  --course-accent: var(--course-practice);
}

body#classes main a[href^="https://forms.gle"],
body#classes main a[href*="docs.google.com/forms"],
body#register main a[href^="https://forms.gle"],
body#register main a[href*="docs.google.com/forms"] {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.45rem 0.9rem;
  color: var(--accent-ink);
  text-decoration: none;
  background: var(--accent);
  border-radius: 999rem;
}
body#classes #prices > p,
body#register #prices > p {
  max-width: 46rem;
}
body#classes #prices > div,
body#register #prices > div {
  display: grid;
  gap: 1rem;
  margin: 1rem 0 1.15rem;
}
body#classes #prices article,
body#register #prices article {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 1rem 1.1rem;
  background: color-mix(in srgb, var(--accent) 6%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--accent) 14%, var(--line));
  border-radius: calc(var(--radius) * 1.5);
}
body#classes #prices h3,
body#register #prices h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.12;
  color: var(--ink);
}
body#classes #prices dl,
body#register #prices dl {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}
body#classes #prices dl > div,
body#register #prices dl > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: baseline;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
}
body#classes #prices dt,
body#register #prices dt {
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
  color: color-mix(in srgb, var(--accent) 72%, var(--ink));
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
body#classes #prices dd,
body#register #prices dd {
  margin: 0;
  font-family: "Epilogue", sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  white-space: nowrap;
}
body#classes #prices article > p,
body#register #prices article > p {
  margin: 0;
  color: color-mix(in srgb, var(--ink) 76%, transparent);
}
body#classes #prices > ul,
body#register #prices > ul {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
body#classes #prices > ul li,
body#register #prices > ul li {
  position: relative;
  padding-left: 1.15rem;
  margin: 0;
}
body#classes #prices > ul li::before,
body#register #prices > ul li::before {
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  content: "";
  background: var(--accent);
  border-radius: 999rem;
}

body#events #summer-guinguettes {
  display: grid;
  gap: clamp(0.9rem, 2vw, 1.25rem);
}
body#events #summer-guinguettes > h2,
body#events #summer-guinguettes > p {
  margin: 0;
}
body#events #summer-guinguettes > p {
  max-width: 52rem;
}
body#events .event-details {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  align-items: start;
}
body#events .event-facts {
  display: grid;
  margin: 0;
}
body#events .event-facts > div {
  display: grid;
  gap: 0.2rem;
  padding: 0.7rem 0;
  border-top: 1px solid var(--line);
}
body#events .event-facts > div:last-child {
  border-bottom: 1px solid var(--line);
}
body#events .event-facts dt {
  font-weight: 800;
  color: var(--ink);
}
body#events .event-facts dd {
  margin: 0;
  color: var(--ink-soft);
}
body#events .event-initiations {
  display: grid;
  gap: 0.75rem;
}
body#events .event-initiations h3 {
  margin: 0;
  font-size: 1.05rem;
}
body#events .event-initiations ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.85rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
body#events .event-initiations li {
  padding-left: 0.7rem;
  margin: 0;
  border-left: 0.2rem solid var(--accent);
}
body#events .event-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
body#events .event-links li {
  margin: 0;
}
body#events .event-links a {
  font-weight: 800;
}

@media (min-width: 48rem) {
  html {
    scroll-padding-top: 6.5rem;
  }
  body > header nav {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
  body > header nav > a[href="/register/"] {
    justify-self: end;
  }
  body#classes #prices > div,
  body#register #prices > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body#about #team > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
  body#about #team > div > article {
    grid-template-columns: minmax(0, 9.5rem) minmax(0, 1fr);
    row-gap: 0.6rem;
    column-gap: 1rem;
  }
  body#about #team > div > article > h3 {
    grid-column: 1/-1;
  }
  body#about #team > div > article > figure {
    grid-row: 2/span 3;
    grid-column: 1;
    align-self: start;
  }
  body#about #team > div > article > p {
    grid-column: 2;
  }
  body#about #team > div > article:not(:has(figure)) > p {
    grid-column: 1/-1;
  }
  body#about #school article {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: start;
  }
  body#about #school article > div {
    grid-template-columns: repeat(3, minmax(0, 10.5rem));
  }
  body#events .event-details {
    grid-template-columns: minmax(0, 1.2fr) minmax(14rem, 0.8fr);
  }
  body#events #praticas > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body#home #intro {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }
  body#home #intro h1,
  body#home #intro h1 + p {
    grid-column: 1;
  }
  body#home #gallery {
    grid-row: 1/span 2;
    grid-column: 2;
  }
  body#home #gallery > div {
    min-height: 29rem;
  }
  body#home #video {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
  }
}
body#classes .schedule-legend {
  display: none;
}
body#classes .schedule-days {
  display: grid;
}
body#classes .schedule-days > article {
  display: grid;
  align-content: start;
  height: 100%;
  background: color-mix(in srgb, var(--primary) 5%, transparent);
  border: 0.08rem solid var(--line);
  border-radius: 0.8rem;
  box-shadow: var(--shadow);
}
body#classes .schedule-days > article > h4 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.02;
  color: color-mix(in srgb, var(--course-level-2) 70%, var(--ink));
  text-transform: uppercase;
  letter-spacing: 0.035em;
}
body#classes .schedule-days > article > p {
  margin: 0;
}
body#classes .schedule-days > article > p:first-of-type {
  font-size: 0.75rem;
  font-style: italic;
  font-weight: 700;
  color: var(--schedule-exception-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
body#classes .schedule-days > article > p:first-of-type strong,
body#classes .schedule-days > article > p:first-of-type time {
  color: inherit;
}
body#classes .schedule-days > article > section {
  min-width: 0;
  border-top: 0.08rem solid color-mix(in srgb, var(--line) 72%, transparent);
}
body#classes .schedule-days > article > section + section {
  margin-top: 0;
}
body#classes .schedule-days > article > section > h5 {
  display: flex;
  gap: 0.38rem;
  align-items: flex-start;
  padding: 0;
  font-size: 0.82rem;
  line-height: 1.15;
  color: color-mix(in srgb, var(--ink-soft) 88%, var(--course-level-2));
  text-transform: uppercase;
  letter-spacing: 0.075em;
  overflow-wrap: anywhere;
  border: 0;
}
body#classes .schedule-days > article > section > h5::before {
  flex: 0 0 0.72rem;
  width: 0.72rem;
  height: 0.72rem;
  margin-top: 0.05rem;
  content: "";
  background: no-repeat center/contain var(--icon-pin);
  opacity: 0.8;
}
body#classes .schedule-days > article > section > h5 a {
  color: inherit;
  text-decoration: none;
}
body#classes .schedule-days > article > section > div {
  display: grid;
  padding-left: 0;
  margin: 0;
  list-style: none;
}
body#classes .schedule-days article.class {
  min-width: 0;
  background: color-mix(in srgb, var(--course-accent) 12%, #ffffff);
  border-left: 0.28rem solid var(--course-accent);
  border-radius: 0.35rem;
}
body#classes .schedule-days article.class > p:first-of-type {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--course-accent) 72%, var(--ink));
  white-space: nowrap;
}
body#classes .schedule-days article.class > h6 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.16;
  color: var(--ink);
  overflow-wrap: anywhere;
  text-decoration-thickness: 0.08rem;
  text-underline-offset: 0.12em;
}
body#classes .schedule-days article.class > h6 a {
  color: inherit;
}
body#classes .schedule-days article.class > h6 ~ p,
body#classes .schedule-days article.class .teachers {
  font-size: 0.76rem;
  color: var(--ink-soft);
}
body#classes .schedule-days article.class .teachers {
  position: relative;
  padding-left: 1.12rem;
}
body#classes .schedule-days article.class .teachers::before {
  position: absolute;
  top: 0.1rem;
  left: 0;
  width: 0.8rem;
  height: 0.8rem;
  content: "";
  background: no-repeat center/contain var(--icon-people);
  opacity: 0.72;
}
body#classes .schedule-days article.class.free-practice {
  display: grid;
  background: repeating-linear-gradient(135deg, rgba(246, 201, 131, 0.14) 0 0.55rem, rgba(255, 255, 255, 0.92) 0.55rem 1.1rem);
  border: 0.08rem dashed color-mix(in srgb, var(--course-accent) 55%, var(--line));
  border-left: 0.32rem solid var(--course-accent);
}
body#classes .schedule-days article.class.free-practice > p:first-of-type {
  margin: 0;
}
body#classes .schedule-days article.class.free-practice > h6 {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  overflow-wrap: normal;
}
@media (min-width: 48rem) {
  body#classes .schedule-days {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 64rem) {
  body#classes .schedule-days {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
  }
  body#classes .schedule-days > article > h4 {
    font-size: 1.06rem;
  }
  body#classes .schedule-days > article > p:first-of-type {
    grid-column: 1/-1;
    padding-bottom: 0.05rem;
  }
  body#classes .schedule-days > article > section {
    align-self: start;
  }
  body#classes .schedule-days > article > section:only-of-type,
  body#classes .schedule-days > article > p:first-of-type + section:last-of-type {
    grid-column: 1/-1;
  }
}

body#venues main > section:not(#intro) figure {
  max-width: 26rem;
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) - 0.1rem);
}
body#venues main > section:not(#intro) figure img {
  width: 100%;
  height: auto;
}

@media (max-width: 47.99rem) {
  body#classes .schedule-days {
    display: block;
  }
  body#classes .schedule-days > article {
    height: auto;
  }
  body#classes .schedule-days > article + article {
    margin-top: 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  body#home #gallery figure,
  body#home #gallery ol button {
    transition: none;
  }
}
body#legal .legal-details {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}
body#legal .legal-details div {
  display: grid;
  gap: 0.1rem;
}
body#legal .legal-details dt {
  font-weight: 800;
}
body#legal .legal-details dd {
  margin: 0;
}
body#legal .legal-details address {
  font-style: normal;
}

body#levels section.class > section[aria-labelledby$=-scheduled-classes],
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] {
  padding: 0;
  margin-top: clamp(1rem, 2vw, 1.35rem);
  background: transparent;
  border: 0;
  box-shadow: none;
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] > h3,
body#levels section.class > section[aria-labelledby$=-scheduled-classes] > h4,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] > h3,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] > h4 {
  display: inline-flex;
  align-items: center;
  min-height: 1.65rem;
  padding: 0;
  margin: 0 0 0.7rem;
  font-size: 0.74rem;
  font-weight: 800;
  color: color-mix(in srgb, var(--ink) 78%, var(--course-accent));
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] li,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] li {
  margin: 0;
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] article,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] article {
  position: relative;
  display: grid;
  gap: 0.7rem;
  padding: 0.9rem 1rem 1rem;
  overflow: hidden;
  background: color-mix(in srgb, var(--course-accent) 8%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--course-accent) 18%, rgba(181, 196, 192, 0.4));
  border-left: 0;
  border-radius: 0 0.78rem 0.78rem 0;
  box-shadow: inset 0.28rem 0 0 var(--course-accent), 0 1.1rem 2.2rem rgba(38, 71, 67, 0.06);
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] article > h4,
body#levels section.class > section[aria-labelledby$=-scheduled-classes] article > h5,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] article > h4,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] article > h5 {
  padding: 0 0 0.6rem;
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 800;
  line-height: 1;
  color: color-mix(in srgb, var(--ink) 82%, var(--course-accent));
  border-bottom: 1px solid color-mix(in srgb, var(--course-accent) 20%, transparent);
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] article > h5 a,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] article > h5 a {
  color: inherit;
  text-decoration: none;
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] article > p,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] article > p {
  margin: 0;
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] article.pratica,
body#levels section.class > section[aria-labelledby$=-scheduled-classes] article.free-practice,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] article.pratica,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] article.free-practice {
  background: color-mix(in srgb, var(--course-accent) 10%, #ffffff);
  border-color: color-mix(in srgb, var(--course-accent) 44%, rgba(181, 196, 192, 0.6));
  border-style: dashed;
  border-left: 0;
  box-shadow: inset 0.28rem 0 0 var(--course-accent), 0 0.8rem 1.6rem rgba(38, 71, 67, 0.04);
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] article.free-practice,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] article.free-practice {
  gap: 0.55rem;
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .portraits,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .portraits {
  display: flex;
  grid-row: 1/span 2;
  grid-column: 2;
  align-self: start;
  justify-self: end;
  width: max-content;
  padding: 0;
  margin: 0;
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .portraits:has(img:nth-child(1)),
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .portraits:has(img:nth-child(1)) {
  width: 4.45rem;
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .portraits:has(img:nth-child(2)),
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .portraits:has(img:nth-child(2)) {
  width: 6.65rem;
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .portraits:has(img:nth-child(3)),
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .portraits:has(img:nth-child(3)) {
  width: 8.85rem;
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .portraits img,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .portraits img {
  flex: none;
  width: 3.55rem;
  height: 4.15rem;
  object-fit: cover;
  border: 2px solid #ffffff;
  border-radius: 0.3rem;
  box-shadow: 0 0.45rem 1.1rem rgba(23, 29, 28, 0.12);
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .portraits img:nth-child(1),
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .portraits img:nth-child(1) {
  transform: rotate(4deg);
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .portraits img:nth-child(2n),
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .portraits img:nth-child(2n) {
  transform: rotate(-8deg) translateY(0.12rem);
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .portraits img:nth-child(3n),
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .portraits img:nth-child(3n) {
  transform: rotate(6deg) translateY(-0.1rem);
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .portraits img + img,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .portraits img + img {
  margin-left: -1.2rem;
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .term a,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .term a {
  display: inline-flex;
  align-items: center;
  min-height: 1.6rem;
  padding: 0.18rem 0.58rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: color-mix(in srgb, var(--course-accent) 36%, var(--primary-ink));
  white-space: nowrap;
  text-decoration: none;
  background: color-mix(in srgb, var(--course-accent) 13%, #ffffff);
  border-radius: 999rem;
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .time,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .time {
  display: flex;
  flex-wrap: wrap;
  gap: 0.22rem 0.55rem;
  align-items: baseline;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  color: color-mix(in srgb, var(--accent) 58%, var(--ink-soft));
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .time > span,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .time > span {
  color: color-mix(in srgb, var(--ink) 70%, var(--course-accent));
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .exceptions,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .exceptions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.45rem;
  align-items: baseline;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  color: #8a1616;
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .exceptions strong,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .exceptions strong {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .course,
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .venue,
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .people,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .course,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .venue,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .people {
  position: relative;
  padding-left: 1.45rem;
  font-size: 0.87rem;
  line-height: 1.35;
  color: color-mix(in srgb, var(--ink) 84%, var(--primary-ink));
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .course::before,
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .venue::before,
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .people::before,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .course::before,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .venue::before,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .people::before {
  position: absolute;
  top: 0.08rem;
  left: 0.1rem;
  width: 1rem;
  height: 1rem;
  content: "";
  background: color-mix(in srgb, var(--course-accent) 28%, var(--primary-ink));
  -webkit-mask: var(--scheduled-icon) center/contain no-repeat;
  mask: var(--scheduled-icon) center/contain no-repeat;
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .course a,
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .venue a,
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .people a,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .course a,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .venue a,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .people a {
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .venue,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .venue {
  --scheduled-icon: var(--icon-pin);
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .course,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .course {
  --scheduled-icon: var(--icon-newsletter);
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .people,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .people {
  --scheduled-icon: var(--icon-people);
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] a:hover,
body#levels section.class > section[aria-labelledby$=-scheduled-classes] a:focus-visible,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] a:hover,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

body#levels section.class > section[aria-labelledby$=-scheduled-classes] {
  padding: clamp(0.85rem, 2vw, 1.05rem);
  background: linear-gradient(135deg, color-mix(in srgb, var(--course-accent) 7%, transparent), transparent 62%), color-mix(in srgb, var(--course-accent) 3%, rgba(255, 255, 255, 0.72));
  border: 1px solid color-mix(in srgb, var(--course-accent) 16%, var(--line));
  border-radius: 0.95rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 0.9rem 1.8rem rgba(38, 71, 67, 0.035);
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] > h3,
body#levels section.class > section[aria-labelledby$=-scheduled-classes] > h4 {
  margin-bottom: 0.85rem;
  color: color-mix(in srgb, var(--course-accent) 42%, var(--ink));
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] > ul {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] article {
  padding-top: 1rem;
  background: rgba(255, 255, 255, 0.82);
  border-color: color-mix(in srgb, var(--course-accent) 14%, var(--line));
  border-radius: 0.75rem;
  box-shadow: 0 0.7rem 1.35rem rgba(38, 71, 67, 0.045);
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 0.24rem;
  content: "";
  background: var(--course-accent);
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] article.pratica,
body#levels section.class > section[aria-labelledby$=-scheduled-classes] article.free-practice {
  box-shadow: 0 0.6rem 1.1rem rgba(38, 71, 67, 0.035);
}

body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] {
  grid-column: 1/-1;
}
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] > .scheduled-days {
  display: grid;
  gap: 0.9rem;
}
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] > .scheduled-days > section {
  display: grid;
  gap: 0.75rem;
  padding: 0.85rem;
  background: color-mix(in srgb, var(--course-accent, var(--accent)) 5%, rgba(255, 255, 255, 0.7));
  border: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  border-radius: 0.95rem;
}
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] > .scheduled-days > section > h4 {
  padding: 0 0 0.55rem;
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
}
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] > .scheduled-days > section > ul {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

body#levels section.class > .vocabulary-videos {
  margin-top: 1rem;
}

@media (min-width: 42rem) {
  body#levels section.class > section[aria-labelledby$=-scheduled-classes] > ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] > .scheduled-days {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body#levels section.class > section[aria-labelledby$=-scheduled-classes] article,
  body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] article {
    grid-template-columns: minmax(8rem, 0.72fr) minmax(0, 1fr) auto;
    gap: 0.62rem 1rem;
    align-items: start;
  }
  body#levels section.class > section[aria-labelledby$=-scheduled-classes] article > h4,
  body#levels section.class > section[aria-labelledby$=-scheduled-classes] article > h5,
  body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] article > h4,
  body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] article > h5 {
    align-self: center;
    padding: 0;
    border: 0;
  }
  body#levels section.class > section[aria-labelledby$=-scheduled-classes] .term,
  body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .term {
    justify-self: end;
  }
  body#levels section.class > section[aria-labelledby$=-scheduled-classes] .time,
  body#levels section.class > section[aria-labelledby$=-scheduled-classes] .exceptions,
  body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .time,
  body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .exceptions {
    grid-column: 1/-1;
  }
  body#levels section.class > section[aria-labelledby$=-scheduled-classes] .course,
  body#levels section.class > section[aria-labelledby$=-scheduled-classes] .venue,
  body#levels section.class > section[aria-labelledby$=-scheduled-classes] .people,
  body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .course,
  body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .venue,
  body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .people {
    align-self: start;
  }
  body#levels section.class > section[aria-labelledby$=-scheduled-classes] .portraits,
  body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .portraits {
    grid-column: 3;
  }
}
body#classes .schedule-days article.class:has(.portraits) {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.28rem 0.72rem;
  align-items: start;
}
body#classes .schedule-days article.class .portraits {
  display: grid;
  grid-row: 1/span 4;
  grid-column: 2;
  justify-items: end;
  width: max-content;
  padding: 0;
  margin: 0;
}
body#classes .schedule-days article.class .portraits img {
  flex: none;
  width: 2.05rem;
  height: 2.42rem;
  object-fit: cover;
  border: 0.12rem solid #ffffff;
  border-radius: 0.25rem;
  box-shadow: 0 0.45rem 0.9rem rgba(23, 29, 28, 0.14);
}
body#classes .schedule-days article.class .portraits img:nth-child(1) {
  transform: rotate(5deg);
}
body#classes .schedule-days article.class .portraits img:nth-child(2n) {
  transform: rotate(-7deg) translateY(0.1rem);
}
body#classes .schedule-days article.class .portraits img:nth-child(3n) {
  transform: rotate(6deg) translateY(-0.08rem);
}
body#classes .schedule-days article.class .portraits img + img {
  margin-top: -0.66rem;
}
body#classes .schedule-days article.class:has(.portraits) > :not(.portraits) {
  grid-column: 1;
}
@media (min-width: 78rem) {
  body#classes .schedule-days article.class .portraits img {
    width: 2.75rem;
    height: 3.24rem;
  }
  body#classes .schedule-days article.class .portraits img + img {
    margin-top: -0.9rem;
  }
}

:root {
  --brand-blue: #004f71;
  --brand-blue-hover: #003b55;
  --paper: #fff7ea;
  --paper-soft: #fffaf1;
  --surface: #fffdf8;
  --surface-warm: #fff4df;
  --ink: #173846;
  --ink-soft: rgba(23, 56, 70, 0.74);
  --primary: var(--brand-blue);
  --primary-text: var(--brand-blue);
  --primary-ink: #fff;
  --primary-soft: color-mix(in srgb, var(--primary) 10%, var(--surface));
  --primary-line: color-mix(in srgb, var(--primary) 30%, transparent);
  --accent: var(--primary-text);
  --accent-ink: #fff;
  --clay: #b85f39;
  --clay-text: #8a3f24;
  --yellow: #f2c14e;
  --green: #5e7f5e;
  --green-text: #486948;
  --guava: #d96c75;
  --leather: #6b4226;
  --line: rgba(0, 79, 113, 0.16);
  --shadow-color: rgba(0, 79, 113, 0.1);
  --shadow: 0 1rem 2.4rem var(--shadow-color);
  --radius: 0.5rem;
  --focus: var(--brand-blue);
  --page: var(--paper);
  --font-body: Inter, "Source Sans 3", "Segoe UI", sans-serif;
  --font-title: "Bricolage Grotesque", Fraunces, Georgia, serif;
  --body-line-height: 1.62;
  --max: 88rem;
  --page-shell-width: 100%;
  --page-shell-margin-inline: 0;
  --main-inline: clamp(1rem, 4vw, 1.5rem);
  --main-top-padding: clamp(1rem, 2vw, 1.35rem);
  --section-gap: clamp(1.6rem, 4vw, 3rem);
  --course-level-1: #4cafa5;
  --course-level-2: #3c73b8;
  --course-level-3: var(--clay);
  --course-level-4: #8f5fb8;
  --course-musicality: #d96c75;
  --course-roots: #8a7442;
  --course-practice: #5e7f5e;
}

@font-face {
  font-family: "Architects Daughter";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/architects-daughter-latin.woff2") format("woff2");
  font-display: swap;
}
body :is(h1, h2) {
  font-family: "Architects Daughter", cursive !important;
}

a {
  color: var(--accent);
  text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 0.18rem solid color-mix(in srgb, var(--focus) 75%, var(--yellow));
  outline-offset: 0.18rem;
}

body {
  color: var(--ink);
  background: linear-gradient(180deg, var(--paper) 0%, color-mix(in srgb, var(--green) 5%, var(--paper)) 100%);
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image: radial-gradient(circle, rgba(0, 79, 113, 0.07) 0 1px, transparent 1px), repeating-linear-gradient(115deg, transparent 0 2.4rem, rgba(184, 95, 57, 0.035) 2.4rem 2.48rem, transparent 2.48rem 4.8rem);
  background-size: 1.8rem 1.8rem, 16rem 16rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 76%);
}
body > header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 247, 234, 0.9);
  border-bottom: 1px solid color-mix(in srgb, var(--brand-blue) 18%, transparent);
  box-shadow: 0 0.7rem 1.8rem rgba(0, 79, 113, 0.07);
  backdrop-filter: blur(18px);
}
body > header nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.55rem 0.75rem;
  align-items: center;
  width: min(100%, var(--max));
  padding: 0.65rem var(--main-inline);
  margin-inline: auto;
}
body > header nav ul {
  display: flex;
  flex-wrap: nowrap;
  grid-column: 1/-1;
  gap: clamp(0.5rem, 14vw - 2.6rem, 1.5rem);
  align-items: center;
  padding-block-end: 0.1rem;
}
body > header nav a {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0;
  font-size: 0.82rem;
  font-weight: 800;
  color: color-mix(in srgb, var(--ink) 86%, var(--leather));
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999rem;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}
body > header nav a:hover, body > header nav a:focus-visible {
  color: var(--primary-text);
}
body > header nav a[aria-current=page] {
  padding: 0.16rem 0.48rem;
  color: var(--primary-text);
  background: color-mix(in srgb, var(--primary) 10%, var(--surface));
  border-color: color-mix(in srgb, var(--primary) 24%, transparent);
}
body > header nav > a[href="/register/"] {
  grid-row: 1;
  grid-column: 2;
  justify-self: end;
  min-height: 2.2rem;
  padding: 0.38rem 0.82rem;
  color: var(--primary-ink);
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  box-shadow: 0 0.7rem 1.5rem rgba(0, 79, 113, 0.18);
}
body > header nav > a[href="/register/"]:hover, body > header nav > a[href="/register/"]:focus-visible {
  color: var(--primary-ink);
  background: var(--brand-blue-hover);
  transform: translateY(-1px);
}
body > header nav > a[href="/register/"][aria-current=page] {
  color: var(--primary-ink);
  background: var(--ink);
  border-color: var(--ink);
}
body > main {
  display: grid;
  gap: var(--section-gap);
  width: min(100%, var(--max));
  padding: var(--main-top-padding) var(--main-inline) clamp(3rem, 7vw, 5rem);
  margin-inline: auto;
}
body > main > section,
body > main > figure {
  position: relative;
  padding: clamp(1.25rem, 3vw, 2.4rem);
  overflow: hidden;
  background: color-mix(in srgb, var(--surface) 92%, var(--yellow));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
body > main > section + section,
body > main > figure + section,
body > main > section + figure {
  margin-top: 0;
}
body > main > #intro + section,
body > main > #intro + figure {
  margin-top: calc(var(--section-gap) * -0.25);
}
body > main > figure:has(> blockquote) {
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 12%, transparent), transparent 54%), var(--surface);
  border-color: color-mix(in srgb, var(--primary) 22%, var(--line));
}
body > main > figure:has(> blockquote)::before {
  position: absolute;
  top: -0.8rem;
  right: 1rem;
  font-family: var(--font-title);
  font-size: clamp(5rem, 16vw, 8rem);
  font-weight: 800;
  line-height: 1;
  color: color-mix(in srgb, var(--yellow) 42%, transparent);
  pointer-events: none;
  content: "“";
}
body > main > figure:has(> blockquote) blockquote p {
  position: relative;
  max-width: 34ch;
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.35rem, 4vw, 2.35rem);
  font-weight: 760;
  line-height: 1.13;
}
body > main > figure:has(> blockquote) figcaption {
  position: relative;
  margin-top: 1rem;
  color: var(--ink-soft);
}
body > main article > * {
  margin: 0;
}
body > main h1,
body > main h2,
body > main h3 {
  font-family: var(--font-title);
  color: var(--ink);
}
body > main h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.5rem, 8vw, 4.6rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}
body > main h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.45rem);
  font-weight: 780;
  line-height: 1.04;
}
body > main h3 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  line-height: 1.12;
}
body > main h4 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
}
body > main p,
body > main ul,
body > main ol {
  margin: 0 0 1.15rem;
}
body > main p,
body > main li {
  color: var(--ink-soft);
}
body > main a {
  font-weight: 800;
  color: var(--primary-text);
}
body > main a:hover, body > main a:focus-visible {
  color: var(--brand-blue-hover);
}
body > footer {
  padding: 0 var(--main-inline) clamp(2.5rem, 6vw, 4rem);
}
body > footer > div {
  display: grid;
  gap: 0.9rem;
  width: min(100%, var(--max));
  padding: clamp(1.15rem, 3vw, 1.7rem);
  margin-inline: auto;
  color: var(--primary-ink);
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 16%, transparent), transparent), var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
body > footer p {
  margin: 0;
  color: rgba(255, 250, 241, 0.74);
}
body > footer .legal-identity {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.8rem;
  margin: 0;
  font-size: 0.9rem;
  font-style: normal;
  color: rgba(255, 250, 241, 0.74);
}
body > footer .legal-identity a {
  font-weight: 800;
}
body > footer .legal-identity address {
  font-style: normal;
}
body > footer a {
  color: var(--primary-ink);
}
body > footer .contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
body > footer .contact-links li {
  margin: 0;
}
body > footer .contact-links a {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.48rem 0.75rem;
  text-decoration: none;
  background: rgba(255, 250, 241, 0.1);
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: 999rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  color: var(--ink);
  text-decoration: none;
}
.wordmark img {
  width: auto;
  max-width: 6.5rem;
  height: auto;
}

body > main > section.orientation {
  background: linear-gradient(135deg, color-mix(in srgb, var(--yellow) 24%, transparent), transparent 50%), var(--surface);
}
body > main > section.orientation a {
  color: var(--primary-text);
  background: color-mix(in srgb, var(--primary) 8%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--primary) 26%, var(--line));
}
body > main > section.orientation a:hover, body > main > section.orientation a:focus-visible {
  background: color-mix(in srgb, var(--primary) 13%, var(--surface));
}
body > main > section.orientation li:first-child a {
  color: var(--primary-ink);
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

body#home #intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 2rem);
  align-items: center;
  min-height: clamp(27rem, 58vh, 42rem);
  background: linear-gradient(145deg, color-mix(in srgb, var(--primary) 8%, var(--surface)), var(--surface) 52%, color-mix(in srgb, var(--yellow) 10%, var(--surface)));
}
body#home #intro > h1 {
  max-width: 12ch;
  margin: 0;
}
body#home #intro > h1 strong {
  color: var(--clay-text);
}
body#home #intro > h1 + p {
  max-width: 34rem;
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--ink-soft);
}
body#home #gallery {
  align-self: center;
}
body#home #gallery > div {
  min-height: clamp(19rem, 52vw, 32rem);
  border: 1px solid color-mix(in srgb, var(--leather) 16%, transparent);
  border-radius: calc(var(--radius) * 1.15);
  box-shadow: 0 1.5rem 3rem rgba(0, 79, 113, 0.12);
}
body#home #gallery img {
  filter: saturate(1.02);
}
body#home #gallery nav {
  margin-top: 0.9rem;
}
body#home #gallery nav > button,
body#home #gallery nav ol button {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
}
body#home #gallery nav ol button[aria-current=true] {
  background: var(--primary-text);
  border-color: var(--primary-text);
}
body#home #video {
  display: grid;
  gap: clamp(1rem, 4vw, 2.5rem);
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand-blue) 42%, var(--ink)), var(--ink));
}
body#home #video h2,
body#home #video p,
body#home #video a {
  color: var(--primary-ink);
}
body#home #video p {
  color: rgba(255, 250, 241, 0.82);
}

body#classes #intro,
body#levels #intro,
body#about #intro,
body#venues #intro,
body#events #intro,
body#register #intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 1.8rem);
  min-height: clamp(24rem, 46vw, 37rem);
  background: linear-gradient(135deg, color-mix(in srgb, var(--yellow) 18%, transparent), transparent 45%), linear-gradient(315deg, color-mix(in srgb, var(--green) 9%, transparent), transparent 52%), var(--surface);
}
body#classes #intro > h1,
body#levels #intro > h1,
body#about #intro > h1,
body#venues #intro > h1,
body#events #intro > h1,
body#register #intro > h1 {
  max-width: 12ch;
  margin: 0;
}
body#classes #intro > h1 strong,
body#levels #intro > h1 strong,
body#about #intro > h1 strong,
body#venues #intro > h1 strong,
body#events #intro > h1 strong,
body#register #intro > h1 strong {
  color: var(--clay-text);
}
body#classes #intro > p,
body#levels #intro > p,
body#about #intro > p,
body#venues #intro > p,
body#events #intro > p,
body#register #intro > p {
  max-width: 38rem;
  margin: 0;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  color: var(--ink-soft);
}
body#classes #intro > ul,
body#classes #intro > ol,
body#levels #intro > ul,
body#levels #intro > ol,
body#about #intro > ul,
body#about #intro > ol,
body#venues #intro > ul,
body#venues #intro > ol,
body#events #intro > ul,
body#events #intro > ol,
body#register #intro > ul,
body#register #intro > ol {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
body#classes #intro > ul:not([aria-label="Trimester rhythm"]) > li,
body#classes #intro > ol:not([aria-label="Trimester rhythm"]) > li,
body#levels #intro > ul:not([aria-label="Trimester rhythm"]) > li,
body#levels #intro > ol:not([aria-label="Trimester rhythm"]) > li,
body#about #intro > ul:not([aria-label="Trimester rhythm"]) > li,
body#about #intro > ol:not([aria-label="Trimester rhythm"]) > li,
body#venues #intro > ul:not([aria-label="Trimester rhythm"]) > li,
body#venues #intro > ol:not([aria-label="Trimester rhythm"]) > li,
body#events #intro > ul:not([aria-label="Trimester rhythm"]) > li,
body#events #intro > ol:not([aria-label="Trimester rhythm"]) > li,
body#register #intro > ul:not([aria-label="Trimester rhythm"]) > li,
body#register #intro > ol:not([aria-label="Trimester rhythm"]) > li {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem 1rem;
  background: color-mix(in srgb, var(--yellow) 12%, var(--surface));
  border: 1px solid var(--line);
  border-radius: 1rem;
}
body#classes #intro > ul strong,
body#classes #intro > ol strong,
body#levels #intro > ul strong,
body#levels #intro > ol strong,
body#about #intro > ul strong,
body#about #intro > ol strong,
body#venues #intro > ul strong,
body#venues #intro > ol strong,
body#events #intro > ul strong,
body#events #intro > ol strong,
body#register #intro > ul strong,
body#register #intro > ol strong {
  display: block;
  color: var(--ink);
}
body#classes #intro > ul span,
body#classes #intro > ol span,
body#levels #intro > ul span,
body#levels #intro > ol span,
body#about #intro > ul span,
body#about #intro > ol span,
body#venues #intro > ul span,
body#venues #intro > ol span,
body#events #intro > ul span,
body#events #intro > ol span,
body#register #intro > ul span,
body#register #intro > ol span {
  color: var(--ink-soft);
}
body#classes #intro > figure,
body#levels #intro > figure,
body#about #intro > figure,
body#venues #intro > figure,
body#events #intro > figure,
body#register #intro > figure {
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) * 1.1);
  box-shadow: 0 1.3rem 2.8rem rgba(0, 79, 113, 0.12);
}
body#classes #intro > figure img,
body#levels #intro > figure img,
body#about #intro > figure img,
body#venues #intro > figure img,
body#events #intro > figure img,
body#register #intro > figure img {
  width: 100%;
  height: clamp(18rem, 52vw, 28rem);
  object-fit: cover;
  filter: saturate(1.03);
}
body#classes #intro > figure figcaption,
body#levels #intro > figure figcaption,
body#about #intro > figure figcaption,
body#venues #intro > figure figcaption,
body#events #intro > figure figcaption,
body#register #intro > figure figcaption {
  padding: 0.7rem 0.85rem;
  margin: 0;
  color: var(--primary-ink);
  background: rgba(0, 79, 113, 0.88);
}

body#classes #intro > ul[aria-label="Trimester rhythm"] {
  gap: 0.55rem;
  padding-left: 0.1rem;
}
body#classes #intro > ul[aria-label="Trimester rhythm"] li {
  display: grid;
  grid-template-columns: 1.05rem minmax(0, 1fr);
  gap: 0.1rem 0.45rem;
  align-items: center;
  padding: 0.08rem 0;
}
body#classes #intro > ul[aria-label="Trimester rhythm"] li::before {
  grid-row: 1/span 2;
  align-self: center;
  justify-self: center;
  width: 0.48rem;
  height: 0.48rem;
  content: "";
  background: var(--primary-text);
  border-radius: 50%;
  box-shadow: 0 0 0 0.28rem color-mix(in srgb, var(--primary) 12%, transparent);
}
body#classes #intro > ul[aria-label="Trimester rhythm"] li strong,
body#classes #intro > ul[aria-label="Trimester rhythm"] li span {
  grid-column: 2;
}
body#classes .schedule-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0;
  margin: 0 0 1.25rem;
  list-style: none;
}
body#classes .schedule-summary li {
  padding: 0.45rem 0.72rem;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--primary-text);
  background: color-mix(in srgb, var(--primary) 8%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--primary) 20%, transparent);
  border-radius: 999rem;
}
body#classes .schedule-days {
  display: grid;
  gap: 1rem;
}
body#classes .schedule-days > article {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  padding: 1rem;
  background: color-mix(in srgb, var(--surface) 88%, var(--yellow));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 0.8rem 1.8rem rgba(0, 79, 113, 0.06);
}
body#classes .schedule-days > article > h4 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  line-height: 1;
  color: var(--ink);
}
body#classes .schedule-days > article > p:first-of-type {
  padding: 0.65rem 0.75rem;
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  color: #8c1e22;
  text-transform: uppercase;
  letter-spacing: 0;
  background: color-mix(in srgb, var(--guava) 14%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--guava) 30%, transparent);
  border-radius: 0.8rem;
}
body#classes .schedule-days > article > section {
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}
body#classes .schedule-days > article > section > h5 {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  color: var(--green-text);
  text-transform: uppercase;
  letter-spacing: 0;
}
body#classes .schedule-days article.class {
  position: relative;
  display: grid;
  gap: 0.55rem;
  min-height: auto;
  padding: 0.9rem 0.95rem 0.95rem;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--course-accent) 22%, var(--line));
  border-radius: 0.95rem;
  box-shadow: 0 0.65rem 1.35rem rgba(0, 79, 113, 0.06);
}
body#classes .schedule-days article.class::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.32rem;
  content: "";
  background: var(--course-accent);
}
body#classes .schedule-days article.class > p:first-of-type {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  color: color-mix(in srgb, var(--course-accent) 38%, var(--ink));
}
body#classes .schedule-days article.class > h6 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.12;
}
body#classes .schedule-days article.class > h6 a {
  color: var(--ink);
  text-decoration: none;
}
body#classes .schedule-days article.class > h6 ~ p,
body#classes .schedule-days article.class .teachers {
  margin: 0;
  color: var(--ink-soft);
}
body#classes .schedule-days article.class .teachers {
  position: relative;
  padding-left: 1.35rem;
}
body#classes .schedule-days article.class .teachers::before {
  position: absolute;
  top: 0.16rem;
  left: 0;
  width: 0.9rem;
  height: 0.9rem;
  content: "";
  background: color-mix(in srgb, var(--course-accent) 72%, var(--ink));
  -webkit-mask: var(--icon-people) center/contain no-repeat;
  mask: var(--icon-people) center/contain no-repeat;
}
body#classes .schedule-days article.class.free-practice {
  background: color-mix(in srgb, var(--yellow) 12%, var(--surface));
  border-style: dashed;
}
body#classes .schedule-days article.class.free-practice h6 {
  font-size: 0.9rem;
}
body#classes .schedule-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  justify-content: center;
  padding: 1rem 0 0;
  margin: 1rem 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
body#classes .schedule-legend li {
  display: inline-flex;
  gap: 0.38rem;
  align-items: center;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0;
}
body#classes .schedule-legend li::before {
  width: 0.45rem;
  height: 1.35rem;
  content: "";
  background: var(--course-accent);
  border-radius: 999rem;
}

body#levels section.class {
  background: linear-gradient(135deg, color-mix(in srgb, var(--course-accent) 10%, transparent), transparent 42%), var(--surface);
  border-left: 0.38rem solid var(--course-accent);
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] {
  background: linear-gradient(135deg, color-mix(in srgb, var(--course-accent) 7%, transparent), transparent 62%), color-mix(in srgb, var(--surface) 92%, var(--yellow));
  border-color: color-mix(in srgb, var(--course-accent) 18%, var(--line));
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] article {
  background: var(--surface);
}

body#venues main > section:not(#intro) {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.55rem);
  background: linear-gradient(135deg, color-mix(in srgb, var(--green) 8%, transparent), transparent 54%), var(--surface);
}
body#venues main > section:not(#intro) > h2,
body#venues main > section:not(#intro) > address,
body#venues main > section:not(#intro) > p,
body#venues main > section:not(#intro) > ul,
body#venues main > section:not(#intro) > section {
  margin: 0;
}
body#venues main > section:not(#intro) > h2 {
  color: var(--ink);
}
body#venues main > section:not(#intro) address a {
  display: inline-grid;
  gap: 0.08rem;
  padding: 0.7rem 0.85rem;
  color: var(--ink);
  text-decoration: none;
  background: color-mix(in srgb, var(--yellow) 14%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--yellow) 35%, var(--line));
  border-radius: 0.85rem;
}
body#venues main > section:not(#intro) > figure {
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) * 0.9);
}
body#venues main > section:not(#intro) > figure img {
  width: 100%;
  height: auto;
}
body#venues main > section:not(#intro) > ul {
  padding: 1rem 1rem 1rem 2.2rem;
  background: color-mix(in srgb, var(--green) 7%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--green) 18%, var(--line));
  border-radius: 1rem;
}
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

body#about #team > div {
  gap: 1.1rem;
}
body#about #team article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 0.8rem 1.8rem rgba(0, 79, 113, 0.06);
}

body#events #praticas article,
body#events main > section:not(#intro) article {
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 0.8rem 1.8rem rgba(0, 79, 113, 0.06);
}

body#classes main a[href^="https://forms.gle"],
body#classes main a[href*="docs.google.com/forms"],
body#register main a[href^="https://forms.gle"],
body#register main a[href*="docs.google.com/forms"] {
  color: var(--primary-ink);
  background: var(--brand-blue);
  border: 1px solid var(--brand-blue);
}
body#classes main a[href^="https://forms.gle"]:hover, body#classes main a[href^="https://forms.gle"]:focus-visible,
body#classes main a[href*="docs.google.com/forms"]:hover,
body#classes main a[href*="docs.google.com/forms"]:focus-visible,
body#register main a[href^="https://forms.gle"]:hover,
body#register main a[href^="https://forms.gle"]:focus-visible,
body#register main a[href*="docs.google.com/forms"]:hover,
body#register main a[href*="docs.google.com/forms"]:focus-visible {
  background: var(--brand-blue-hover);
}
body#classes #prices article,
body#register #prices article {
  background: var(--surface);
  border-color: var(--line);
  border-radius: var(--radius);
  box-shadow: 0 0.75rem 1.6rem rgba(0, 79, 113, 0.06);
}
body#classes #prices dt,
body#register #prices dt {
  color: var(--primary-text);
}
body#classes #prices dd,
body#register #prices dd {
  font-family: var(--font-title);
  color: var(--ink);
}

body#levels section.class > section[aria-labelledby$=-scheduled-classes] article,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] article {
  background: var(--surface);
  border-color: color-mix(in srgb, var(--course-accent) 20%, var(--line));
  border-radius: 0.95rem;
  box-shadow: 0 0.7rem 1.45rem rgba(0, 79, 113, 0.06);
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] article > h4,
body#levels section.class > section[aria-labelledby$=-scheduled-classes] article > h5,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] article > h4,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] article > h5 {
  font-family: var(--font-title);
  color: var(--ink);
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .term a,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .term a {
  color: var(--primary-text);
  background: color-mix(in srgb, var(--yellow) 20%, var(--surface));
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .time,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .time {
  color: color-mix(in srgb, var(--primary-text) 72%, var(--ink));
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .time > span,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .time > span {
  color: var(--ink-soft);
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .course,
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .venue,
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .people,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .course,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .venue,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .people {
  color: var(--ink-soft);
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .course::before,
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .venue::before,
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .people::before,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .course::before,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .venue::before,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .people::before {
  background: color-mix(in srgb, var(--course-accent) 70%, var(--ink));
}
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .course a,
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .venue a,
body#levels section.class > section[aria-labelledby$=-scheduled-classes] .people a,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .course a,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .venue a,
body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] .people a {
  color: var(--primary-text);
}

@media (min-width: 42rem) {
  body#classes .schedule-days {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 48rem) {
  .wordmark img {
    max-width: 7.8rem;
  }
  body > header nav {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    padding-block: 0.9rem;
  }
  body > header nav ul {
    grid-column: auto;
    gap: 1.3rem;
    justify-content: center;
  }
  body > header nav a {
    min-height: 2.15rem;
    padding: 0.2rem 0.35rem;
    font-size: 0.95rem;
  }
  body > header nav a[aria-current=page] {
    padding: 0.3rem 0.7rem;
  }
  body > header nav > a[href="/register/"] {
    grid-row: auto;
    grid-column: auto;
    padding: 0.45rem 1rem;
  }
  body#home #intro {
    grid-template-columns: minmax(16rem, 0.86fr) minmax(21rem, 1.14fr);
  }
  body#home #intro > h1,
  body#home #intro > h1 + p {
    grid-column: 1;
  }
  body#home #gallery {
    grid-row: 1/span 2;
    grid-column: 2;
  }
  body#home #video {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    align-items: center;
  }
}
@media (min-width: 64rem) {
  body#classes .schedule-days {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
  }
  body#classes #intro:has(> figure),
  body#levels #intro:has(> figure),
  body#about #intro:has(> figure),
  body#venues #intro:has(> figure),
  body#events #intro:has(> figure),
  body#register #intro:has(> figure) {
    grid-template-columns: minmax(18rem, 0.92fr) minmax(22rem, 1.08fr);
    column-gap: clamp(2rem, 4vw, 4rem);
  }
  body#classes #intro:has(> figure) > h1,
  body#classes #intro:has(> figure) > p,
  body#classes #intro:has(> figure) > ul,
  body#classes #intro:has(> figure) > ol,
  body#levels #intro:has(> figure) > h1,
  body#levels #intro:has(> figure) > p,
  body#levels #intro:has(> figure) > ul,
  body#levels #intro:has(> figure) > ol,
  body#about #intro:has(> figure) > h1,
  body#about #intro:has(> figure) > p,
  body#about #intro:has(> figure) > ul,
  body#about #intro:has(> figure) > ol,
  body#venues #intro:has(> figure) > h1,
  body#venues #intro:has(> figure) > p,
  body#venues #intro:has(> figure) > ul,
  body#venues #intro:has(> figure) > ol,
  body#events #intro:has(> figure) > h1,
  body#events #intro:has(> figure) > p,
  body#events #intro:has(> figure) > ul,
  body#events #intro:has(> figure) > ol,
  body#register #intro:has(> figure) > h1,
  body#register #intro:has(> figure) > p,
  body#register #intro:has(> figure) > ul,
  body#register #intro:has(> figure) > ol {
    grid-column: 1;
  }
  body#classes #intro:has(> figure) > figure,
  body#levels #intro:has(> figure) > figure,
  body#about #intro:has(> figure) > figure,
  body#venues #intro:has(> figure) > figure,
  body#events #intro:has(> figure) > figure,
  body#register #intro:has(> figure) > figure {
    grid-row: 1/span 4;
    grid-column: 2;
  }
  body#levels #intro:has(> figure) > ul[aria-label="Core aspects of each level"] {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-column: 1/-1;
  }
  body#levels #intro:has(> figure) > figure {
    grid-row: 1/span 3;
    align-self: start;
  }
  body#venues main > section:not(#intro) {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
  }
  body#venues main > section:not(#intro) > figure {
    grid-row: 1/span 4;
    grid-column: 2;
  }
  body#venues main > section:not(#intro) > section[aria-labelledby$=-scheduled-classes] {
    grid-column: 1/-1;
  }
}
