:root {
  --maroon: #711126;
  --deep: #170e0f;
  --gold: #d5aa54;
  --ivory: #f4efe5;
  --ink: #241719;
  --muted: #776a66;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.site-header {
  height: 90px;
  padding: 0 4.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(18, 10, 11, 0.96);
  color: #fff;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}
.brand-mark {
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond";
  font-size: 22px;
}
.brand strong,
.brand small {
  display: block;
  letter-spacing: 0.18em;
  line-height: 1.2;
}
.brand strong {
  font-family: "Cormorant Garamond";
  font-size: 18px;
}
.brand small {
  font-size: 8px;
  color: #bfb3ad;
  margin-top: 5px;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
}
.site-header nav a:not(.nav-cta) {
  padding: 30px 0;
  border-bottom: 1px solid transparent;
}
.site-header nav a:hover {
  color: var(--gold);
}
.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 12px 18px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
}
.menu-button {
  display: none;
}
.hero {
  position: relative;
  min-height: 760px;
  height: 100vh;
  overflow: hidden;
  background: #100a0b;
  color: #fff;
  display: flex;
  align-items: center;
}

/* Display the complete dancer on the right */
.hero > img {
  position: absolute;
  top: 90px;
  right: 0;
  left: auto;
  width: 62%;
  height: calc(100% - 90px);
  object-fit: contain;
  object-position: center top;
}

/* Dark transition between the text and photograph */
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      #100a0b 0%,
      #100a0b 34%,
      rgba(16, 10, 11, 0.92) 43%,
      rgba(16, 10, 11, 0.25) 67%,
      rgba(16, 10, 11, 0) 100%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(620px, 42%);
  margin: 70px 0 0 8vw;
}

.hero h1 {
  color: #fff;
}

/* Tablet and mobile */
@media (max-width: 900px) {
  .hero > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .hero-shade {
    background: linear-gradient(
      90deg,
      rgba(16, 10, 11, 0.94) 0%,
      rgba(16, 10, 11, 0.76) 55%,
      rgba(16, 10, 11, 0.25) 100%
    );
  }

  .hero-content {
    width: 80%;
    margin-left: 7vw;
  }
}

@media (max-width: 580px) {
  .hero {
    min-height: 780px;
    height: 100vh;
  }

  .hero > img {
    object-position: 58% top;
  }

  .hero-content {
    width: 86%;
    margin-left: 7vw;
  }
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 20px;
}
.eyebrow:before {
  content: "";
  display: inline-block;
  width: 35px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 13px;
}
.hero h1,
.intro h2,
.section-heading h2,
.guru h2,
.contact h2 {
  font-family: "Cormorant Garamond";
  font-weight: 500;
  line-height: 0.92;
  margin: 0;
}
.hero h1 {
  font-size: clamp(64px, 8vw, 126px);
  letter-spacing: -0.04em;
}
.hero h1 em,
.intro h2 em,
.section-heading h2 em,
.guru h2 em,
.contact h2 em {
  font-weight: 500;
  color: var(--gold);
}
.hero-copy {
  max-width: 520px;
  color: #d8cfca;
  font-size: 17px;
  margin: 30px 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
}
.gold {
  background: var(--gold);
  color: #231309;
}
.text-link {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.text-link span {
  font-size: 20px;
  margin-left: 10px;
}
.hero-note {
  position: absolute;
  right: 4vw;
  bottom: 58px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 20px;
}
.hero-note span {
  color: var(--gold);
  font-family: "Cormorant Garamond";
  font-size: 32px;
}
.hero-note p {
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: 0.18em;
}
.scroll-cue {
  position: absolute;
  z-index: 2;
  left: 4.5vw;
  bottom: 30px;
  writing-mode: vertical-rl;
  font-size: 8px;
  letter-spacing: 0.25em;
}
.scroll-cue i {
  height: 55px;
  width: 1px;
  background: var(--gold);
  display: inline-block;
  margin-top: 12px;
}
.intro {
  text-align: center;
  padding: 120px 8vw 100px;
  max-width: 1150px;
  margin: auto;
}
.ornament {
  font-size: 25px;
  color: var(--gold);
  margin-bottom: 25px;
}
.maroon {
  color: var(--maroon);
}
.intro h2,
.guru h2,
.contact h2 {
  font-size: clamp(47px, 6vw, 78px);
}
.intro h2 em,
.guru h2 em,
.contact h2 em {
  color: var(--maroon);
}
.lead {
  max-width: 800px;
  margin: 35px auto;
  color: var(--muted);
  font-size: 18px;
}
.stats {
  margin-top: 65px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d8cec1;
  padding-top: 32px;
}
.stats div + div {
  border-left: 1px solid #d8cec1;
}
.stats strong {
  display: block;
  font: 600 44px "Cormorant Garamond";
  color: var(--maroon);
}
.stats span {
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.18em;
}
.classes {
  background: var(--maroon);
  color: white;
  padding: 110px 7vw;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 55px;
}
.section-heading h2 {
  font-size: clamp(50px, 6vw, 80px);
}
.section-heading > p {
  max-width: 410px;
  color: #d8bcc1;
}
.class-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.class-card {
  min-height: 440px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  overflow: hidden;
  transition: 0.35s;
}
.class-card:last-child {
  border-right: 0;
}
.class-card:hover {
  background: #861832;
  transform: translateY(-7px);
}
.class-card .number {
  color: var(--gold);
  font: 25px "Cormorant Garamond";
}
.class-card h3 {
  font: 500 48px "Cormorant Garamond";
  margin: 5px 0;
}
.class-card p {
  color: #e5cfd3;
  max-width: 310px;
}
.class-card .age {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.class-card a {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.class-card a span {
  float: right;
  font-size: 20px;
}
.class-card b {
  position: absolute;
  right: -28px;
  top: 115px;
  transform: rotate(90deg);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.25);
}
.guru {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 750px;
}
.guru-visual {
  background: #211416;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  color: var(--gold);
}
.arch {
  width: 60%;
  height: 70%;
  border: 1px solid #8d6b36;
  border-radius: 50% 50% 0 0;
  display: grid;
  place-items: center;
  position: relative;
  background: radial-gradient(circle at 50% 45%, #7b1428 0 18%, transparent 19%),
    repeating-linear-gradient(
      90deg,
      transparent 0 35px,
      rgba(213, 170, 84, 0.05) 36px
    );
}
.arch:before,
.arch:after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(213, 170, 84, 0.35);
  border-radius: 50% 50% 0 0;
}
.arch:after {
  inset: 45px;
}
.arch span {
  font: italic 120px "Cormorant Garamond";
  z-index: 2;
}
.arch i {
  position: absolute;
  bottom: 13%;
  width: 1px;
  height: 30%;
  background: var(--gold);
}
.guru-visual p {
  position: absolute;
  bottom: 30px;
  font-size: 9px;
  letter-spacing: 0.25em;
}
.guru-copy {
  padding: 10vw 9vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.guru-copy blockquote {
  font: italic 25px/1.4 "Cormorant Garamond";
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 34px 0;
}
.guru-copy > p:not(.eyebrow) {
  color: var(--muted);
}
.dark {
  color: var(--maroon);
  margin-top: 25px;
}
.schedule {
  background: var(--deep);
  color: #fff;
  padding: 110px 7vw;
}
.light > p {
  color: #aa9a95;
}
.event-list {
  border-top: 1px solid #504245;
}
.event-list article {
  display: grid;
  grid-template-columns: 180px 1fr 260px 50px;
  align-items: center;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid #504245;
  transition: 0.25s;
}
.event-list article:hover {
  padding-left: 18px;
  background: #211416;
}
.event-list time {
  display: flex;
  align-items: center;
  gap: 15px;
}
.event-list time strong {
  font: 500 55px "Cormorant Garamond";
  color: var(--gold);
}
.event-list time span,
.event-list article div p {
  font-size: 9px;
  letter-spacing: 0.18em;
}
.event-list h3 {
  font: 500 29px "Cormorant Garamond";
  margin: 2px 0;
}
.event-list .place {
  color: #9f918d;
  font-size: 12px;
}
.event-list article > a {
  font-size: 25px;
  color: var(--gold);
}
.contact {
  text-align: center;
  padding: 120px 7vw;
}
.contact > p:not(.eyebrow):not(.form-message) {
  max-width: 620px;
  margin: 28px auto;
  color: var(--muted);
}
form {
  max-width: 900px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
}
label span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 9px;
  margin-bottom: 8px;
}
input,
select {
  width: 100%;
  height: 55px;
  border: 0;
  border-bottom: 1px solid #b7aaa0;
  background: transparent;
  font: 15px Inter;
  padding: 0 4px;
  color: var(--ink);
  border-radius: 0;
}
input:focus,
select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.maroon-button {
  background: var(--maroon);
  color: #fff;
  grid-column: 1/-1;
  justify-self: center;
  margin-top: 18px;
}
.form-message {
  color: var(--maroon) !important;
  font-weight: 600;
}
footer {
  background: #100a0b;
  color: #d7cbc7;
  padding: 65px 7vw 25px;
  display: grid;
  grid-template-columns: 1.5fr 1fr auto;
  gap: 40px;
  align-items: center;
  font-size: 12px;
}
.footer-brand {
  color: #fff;
}
.social {
  display: flex;
  gap: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.copyright {
  grid-column: 1/-1;
  border-top: 1px solid #382c2e;
  padding-top: 22px;
  color: #7f7370;
  font-size: 10px;
}
@media (max-width: 900px) {
  .site-header {
    height: 75px;
  }
  .menu-button {
    display: flex;
    background: none;
    border: 0;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    z-index: 2;
  }
  .menu-button span {
    height: 1px;
    width: 24px;
    background: #fff;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    background: #170e0f;
    width: min(85vw, 380px);
    height: 100vh;
    padding: 110px 35px;
    flex-direction: column;
    align-items: flex-start;
    font: 24px "Cormorant Garamond";
  }
  .site-header nav.open {
    display: flex;
  }
  .nav-cta {
    font: 11px Inter;
  }
  .hero {
    min-height: 700px;
  }
  .hero > img {
    object-position: 65% center;
  }
  .hero-content {
    margin-left: 7vw;
    width: 80%;
  }
  .hero-note {
    display: none;
  }
  .hero-shade {
    background: linear-gradient(
      90deg,
      rgba(12, 6, 7, 0.86),
      rgba(12, 6, 7, 0.28)
    );
  }
  .guru {
    grid-template-columns: 1fr;
  }
  .guru-visual {
    min-height: 620px;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
  }
  .class-grid {
    grid-template-columns: 1fr;
  }
  .class-card {
    min-height: 330px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }
  .event-list article {
    grid-template-columns: 130px 1fr 30px;
  }
  .event-list .place {
    display: none;
  }
  footer {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 580px) {
  .brand small {
    display: none;
  }
  .brand-mark {
    width: 40px;
    height: 40px;
  }
  .hero {
    height: 880px;
  }
  .hero-content {
    width: 86%;
    margin-top: 0;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero-copy {
    font-size: 16px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .hero > img {
    object-position: 70% center;
  }
  .intro,
  .classes,
  .schedule,
  .contact {
    padding: 80px 6vw;
  }
  .stats {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .stats div + div {
    border-left: 0;
    border-top: 1px solid #d8cec1;
    padding-top: 22px;
  }
  .guru-visual {
    min-height: 500px;
  }
  .guru-copy {
    padding: 80px 7vw;
  }
  .arch {
    width: 75%;
    height: 72%;
  }
  .event-list article {
    grid-template-columns: 95px 1fr 25px;
    gap: 12px;
  }
  .event-list time strong {
    font-size: 40px;
  }
  .event-list h3 {
    font-size: 23px;
  }
  form {
    grid-template-columns: 1fr;
  }
  footer {
    grid-template-columns: 1fr;
  }
  .social {
    margin-top: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .class-card,
  .event-list article {
    transition: none;
  }
}

/* Real academy photography */
.hero > img {
  object-position: 68% 38%;
  filter: saturate(0.92) contrast(1.04);
}
.performance-story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  background: #ebe2d4;
  min-height: 720px;
}
.performance-photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #171112;
}
.performance-photo img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center 64%;
  filter: saturate(0.9) contrast(1.03);
}
.performance-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 7, 8, 0.64), transparent 32%);
}
.performance-photo figcaption {
  position: absolute;
  z-index: 1;
  bottom: 35px;
  left: 40px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 9px;
}
.performance-copy {
  padding: 10vw 9vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.performance-copy h2 {
  font: 500 clamp(47px, 5.5vw, 76px) / 0.94 "Cormorant Garamond";
  margin: 0;
}
.performance-copy h2 em {
  color: var(--maroon);
  font-weight: 500;
}
.performance-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  max-width: 560px;
  margin: 30px 0;
}
.guru-visual {
  display: block;
}
.guru-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 9, 11, 0.72), transparent 42%);
}
.guru-visual img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center 24%;
}
.guru-visual p {
  z-index: 1;
  left: 40px;
}
@media (max-width: 900px) {
  .performance-story {
    grid-template-columns: 1fr;
  }
  .performance-photo {
    min-height: 680px;
  }
  .performance-copy {
    padding: 80px 8vw;
  }
  .hero > img {
    object-position: 58% 36%;
  }
}
@media (max-width: 580px) {
  .performance-photo {
    min-height: 570px;
  }
  .performance-photo figcaption,
  .guru-visual p {
    left: 24px;
  }
  .hero > img {
    object-position: 56% center;
  }
  .performance-copy {
    padding: 70px 7vw;
  }
}
