:root {
  --lavender: #aa9dcc;
  --lavender-deep: #8d7eb5;
  --lavender-light: #d8d0e7;
  --lavender-pale: #eeeaf4;
  --ink: #17151a;
  --ink-soft: #413b48;
  --paper: #f8f5f9;
  --white: #fff;
  --line: rgba(23, 21, 26, 0.18);
  --display: "Bodoni Moda", "Times New Roman", serif;
  --sans: "Manrope", Arial, sans-serif;
  --gutter: clamp(24px, 6vw, 112px);
  --section: clamp(88px, 11vw, 180px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.performance-feature :focus-visible,
.trial-cta :focus-visible,
.site-footer :focus-visible,
.inner-hero-dark :focus-visible {
  outline-color: var(--white);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  min-height: 102px;
  padding: 0 clamp(28px, 4vw, 72px);
  display: grid;
  grid-template-columns: minmax(238px, 1fr) auto minmax(188px, 1fr);
  align-items: center;
  gap: clamp(20px, 2.5vw, 44px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  line-height: 1.05;
}

.brand img {
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.brand span {
  display: grid;
  gap: 5px;
}

.brand strong {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.brand small {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 1.8vw, 34px);
}

.main-nav a,
.header-cta {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 13px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 9px;
  left: 0;
  height: 1px;
  background: currentColor;
  transition: right 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  right: 0;
}

.header-cta {
  justify-self: end;
  min-width: 188px;
  padding: 14px 17px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--ink);
  color: var(--white);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: #2d2832;
}

.header-cta span {
  color: var(--lavender-light);
  font-size: 14px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  display: grid;
  grid-template-columns: minmax(510px, 45%) 1fr;
  overflow: hidden;
  background: var(--lavender);
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: 154px clamp(42px, 5vw, 96px) 76px clamp(48px, 6vw, 112px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: 29%;
  right: -4.5vw;
  width: 9vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  pointer-events: none;
}

.eyebrow,
.section-kicker {
  margin: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  display: block;
  background: currentColor;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(76px, 7.15vw, 126px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.hero h1 em {
  color: var(--paper);
  font-weight: 400;
}

.hero-lead {
  max-width: 520px;
  margin: 36px 0 0;
  color: rgba(23, 21, 26, 0.75);
  font-size: 15px;
  line-height: 1.8;
}

.hero-actions,
.trial-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.button {
  min-width: 205px;
  padding: 16px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

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

.button span,
.text-link span,
.arrow-link span {
  font-size: 14px;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

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

.button-outline {
  border: 1px solid var(--ink);
}

.button-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.text-link {
  position: relative;
  padding: 12px 0 9px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(23, 21, 26, 0.42);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.text-link-light {
  border-color: rgba(255, 255, 255, 0.42);
}

.arrow-link {
  width: fit-content;
  margin-top: 20px;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.arrow-link-light {
  border-color: rgba(255, 255, 255, 0.25);
}

.hero-meta {
  margin-top: clamp(38px, 5.5vh, 62px);
  padding-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  border-top: 1px solid rgba(23, 21, 26, 0.2);
}

.hero-meta p {
  margin: 0;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
}

.hero-meta span {
  padding-top: 2px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-meta strong {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #29272c;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: contrast(1.04);
  transform: scale(1.01);
}

.photo-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(170, 157, 204, 0.28) 0, rgba(170, 157, 204, 0) 22%),
    linear-gradient(180deg, rgba(14, 12, 16, 0.24) 0, transparent 28%, transparent 62%, rgba(14, 12, 16, 0.5) 100%);
  pointer-events: none;
}

.vertical-note {
  position: absolute;
  top: 145px;
  right: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.disciplines {
  position: absolute;
  right: clamp(34px, 4vw, 76px);
  bottom: clamp(50px, 6vh, 74px);
  left: clamp(34px, 4vw, 76px);
  min-height: 166px;
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 1.05fr 1.5fr;
  align-items: end;
  gap: 42px;
  background: rgba(20, 18, 22, 0.83);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.disciplines > p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(25px, 2vw, 34px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.disciplines > p em {
  color: var(--lavender-light);
  font-weight: 400;
}

.disciplines ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 28px;
  list-style: none;
}

.disciplines li {
  padding-bottom: 7px;
  display: flex;
  gap: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.disciplines li span {
  color: var(--lavender-light);
  font-size: 8px;
}

.location-pill {
  position: absolute;
  top: 130px;
  left: 30px;
  min-width: 170px;
  padding: 11px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(248, 245, 249, 0.92);
  box-shadow: 0 16px 35px rgba(16, 14, 18, 0.17);
  backdrop-filter: blur(12px);
}

.location-pill > span:nth-child(2) {
  display: grid;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
}

.location-pill small {
  margin-bottom: 4px;
  font-family: var(--sans);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.location-pill b {
  margin-left: auto;
  color: var(--ink-soft);
  font-size: 13px;
}

.location-icon {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 50% 50% 50% 0;
  background: var(--lavender);
  transform: rotate(-45deg) scale(0.7);
}

.location-icon::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 9px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--paper);
}

.scroll-cue {
  position: absolute;
  z-index: 6;
  bottom: 0;
  left: 0;
  width: 45%;
  min-height: 52px;
  padding: 0 clamp(48px, 6vw, 112px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue i {
  font-size: 14px;
  font-style: normal;
}

.section-pad {
  padding: var(--section) var(--gutter);
}

.editorial-intro {
  position: relative;
  display: grid;
  grid-template-columns: 0.35fr 1.45fr 0.9fr;
  gap: clamp(32px, 5vw, 90px);
  background: var(--paper);
}

.section-number {
  color: var(--lavender-deep);
  font-family: var(--display);
  font-size: clamp(72px, 8vw, 140px);
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.intro-heading h2,
.section-heading h2,
.performance-copy h2,
.season-note h2,
.trial-cta h2,
.inner-hero h1,
.statement h2,
.contact-hero h1 {
  margin: 20px 0 0;
  font-family: var(--display);
  font-size: clamp(52px, 6vw, 105px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.intro-heading h2 em,
.section-heading h2 em,
.performance-copy h2 em,
.season-note h2 em,
.trial-cta h2 em,
.inner-hero h1 em,
.statement h2 em,
.contact-hero h1 em {
  color: var(--lavender-deep);
  font-weight: 400;
}

.intro-copy {
  padding-top: 76px;
}

.intro-copy p,
.split-heading > p,
.performance-copy > p,
.season-note > p,
.contact-intro > p {
  max-width: 540px;
  margin: 0 0 20px;
  color: var(--ink-soft);
  line-height: 1.85;
}

.course-preview {
  background: var(--lavender-pale);
}

.section-heading {
  margin-bottom: clamp(54px, 7vw, 100px);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.55fr 0.65fr;
  align-items: end;
  gap: clamp(40px, 8vw, 140px);
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 2vw, 32px);
  align-items: start;
}

.course-card {
  position: relative;
  min-height: clamp(380px, 38vw, 620px);
  grid-column: span 3;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.course-card:nth-child(2),
.course-card:nth-child(4) {
  margin-top: clamp(54px, 8vw, 124px);
}

.course-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  opacity: 0.78;
  transition: filter 0.5s ease, transform 0.5s ease, opacity 0.5s ease;
}

.course-card:hover img {
  filter: grayscale(0.2) contrast(1.02);
  opacity: 0.9;
  transform: scale(1.025);
}

.course-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 13, 17, 0.08), rgba(15, 13, 17, 0.76));
}

.course-index,
.course-title,
.course-list {
  position: absolute;
  z-index: 2;
  right: 24px;
  left: 24px;
}

.course-index {
  top: 22px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.course-title {
  bottom: 70px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 54px);
  letter-spacing: -0.05em;
}

.course-title i {
  font-family: var(--sans);
  font-size: 17px;
  font-style: normal;
}

.course-list {
  bottom: 26px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.course-preview > .button,
.people-teaser > .button {
  margin-top: 60px;
}

.performance-feature {
  min-height: min(820px, 90svh);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  background: var(--ink);
  color: var(--white);
}

.performance-image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.performance-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(23, 21, 26, 0.92));
}

.performance-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.performance-copy {
  position: relative;
  z-index: 2;
  margin-left: clamp(-120px, -7vw, -70px);
  padding: clamp(80px, 9vw, 140px) var(--gutter) clamp(70px, 8vw, 120px) 0;
  align-self: center;
}

.performance-copy h2 {
  font-size: clamp(54px, 5.4vw, 90px);
}

.performance-copy > p {
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.68);
}

.work-list {
  margin: 36px 0 10px;
  padding: 0;
  list-style: none;
}

.work-list li {
  padding: 13px 0;
  display: grid;
  grid-template-columns: 60px 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-family: var(--display);
  font-size: 21px;
}

.work-list span {
  padding-top: 7px;
  color: var(--lavender-light);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.people-teaser {
  background: var(--paper);
}

.name-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.name-line span {
  min-height: 130px;
  padding: 26px 24px;
  display: flex;
  align-items: flex-end;
  border-right: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.05;
}

.name-line span:last-child {
  border-right: 0;
}

.season-note {
  position: relative;
  padding: clamp(100px, 12vw, 190px) var(--gutter);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.55fr 1.3fr 0.7fr;
  align-items: end;
  gap: clamp(34px, 6vw, 100px);
  background: var(--lavender);
}

.season-note .section-kicker {
  position: absolute;
  top: 52px;
  left: var(--gutter);
}

.season-date {
  display: flex;
  align-items: center;
  gap: 16px;
}

.season-date > span {
  font-family: var(--display);
  font-size: clamp(110px, 13vw, 230px);
  letter-spacing: -0.1em;
  line-height: 0.65;
}

.season-date small {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.season-note h2 {
  font-size: clamp(52px, 5.5vw, 94px);
}

.season-note h2 em {
  color: var(--paper);
}

.season-note > p {
  margin-bottom: 30px;
  color: rgba(23, 21, 26, 0.75);
}

.season-note > .button {
  grid-column: 3;
}

.trial-cta {
  position: relative;
  overflow: hidden;
  background: var(--lavender-deep);
  color: var(--white);
  text-align: center;
}

.trial-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(48vw, 700px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.trial-cta > * {
  position: relative;
  z-index: 1;
}

.trial-cta h2 {
  font-size: clamp(62px, 8vw, 132px);
}

.trial-cta h2 em {
  color: var(--lavender-pale);
}

.trial-actions {
  justify-content: center;
}

.site-footer {
  padding: 68px var(--gutter) 26px;
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.75fr;
  gap: 50px;
  background: var(--ink);
  color: var(--white);
}

.footer-brand {
  align-self: start;
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-brand img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  filter: invert(1) grayscale(1);
  opacity: 0.84;
}

.footer-brand span {
  display: grid;
  line-height: 1.15;
}

.footer-brand strong {
  font-family: var(--display);
  font-size: 22px;
}

.footer-brand small {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-contact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
}

.footer-contact p {
  margin: 0;
  font-size: 11px;
  line-height: 1.8;
}

.footer-contact p > span {
  margin-bottom: 10px;
  display: block;
  color: var(--lavender-light);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-contact a:hover,
.footer-nav a:hover,
.footer-bottom a:hover {
  color: var(--lavender-light);
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  gap: 8px 24px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-bottom {
  padding-top: 24px;
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

/* Internal pages */

.inner-page .site-header {
  position: absolute;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
}

.inner-page .brand img {
  filter: invert(1) grayscale(1);
  mix-blend-mode: normal;
}

.inner-page .header-cta {
  background: var(--lavender-light);
  color: var(--ink);
}

.inner-hero {
  position: relative;
  min-height: min(800px, 88svh);
  padding: 170px var(--gutter) 80px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: end;
  gap: clamp(50px, 7vw, 120px);
  background: var(--ink);
  color: var(--white);
}

.inner-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.42;
}

.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 21, 26, 0.88), rgba(23, 21, 26, 0.18) 70%), linear-gradient(0deg, rgba(23, 21, 26, 0.58), transparent 55%);
}

.inner-hero-copy,
.inner-hero-aside {
  position: relative;
  z-index: 1;
}

.inner-hero h1 {
  max-width: 900px;
  font-size: clamp(72px, 9vw, 150px);
}

.inner-hero h1 em {
  color: var(--lavender-light);
}

.inner-hero-aside {
  max-width: 480px;
  padding-left: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.75);
}

.inner-hero-aside p {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
}

.inner-hero-number {
  position: absolute;
  z-index: 1;
  top: 140px;
  right: var(--gutter);
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--display);
  font-size: clamp(70px, 8vw, 125px);
  line-height: 1;
}

.statement {
  padding: var(--section) var(--gutter);
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: clamp(50px, 8vw, 140px);
  background: var(--paper);
}

.statement h2 {
  margin: 0;
  font-size: clamp(55px, 7vw, 118px);
}

.statement-copy {
  max-width: 660px;
  padding-top: 18px;
}

.statement-copy p {
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.85;
}

.venue-section {
  padding: var(--section) var(--gutter);
  background: var(--lavender-pale);
}

.venue-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(20px, 2vw, 34px);
}

.venue-main,
.venue-side {
  position: relative;
  overflow: hidden;
}

.venue-main {
  min-height: 650px;
}

.venue-side {
  min-height: 500px;
  margin-top: 140px;
}

.venue-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.65) contrast(1.03);
}

.image-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  background: rgba(248, 245, 249, 0.9);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.detail-strip {
  padding: 0 var(--gutter) var(--section);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--lavender-pale);
}

.detail-strip article {
  min-height: 190px;
  padding: 28px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.detail-strip article:last-child {
  border-right: 0;
}

.detail-strip span {
  color: var(--lavender-deep);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.detail-strip h3 {
  margin: 46px 0 0;
  font-family: var(--display);
  font-size: clamp(25px, 2.1vw, 36px);
  font-weight: 500;
  line-height: 1.05;
}

.course-jump-nav {
  position: sticky;
  z-index: 10;
  top: 0;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--lavender);
}

.course-jump-nav a {
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.course-jump-nav a:last-child {
  border-right: 0;
}

.course-family {
  scroll-margin-top: 54px;
  padding: var(--section) var(--gutter);
}

.course-family:nth-of-type(even) {
  background: var(--lavender-pale);
}

.course-family:nth-of-type(odd) {
  background: var(--paper);
}

.family-header {
  margin-bottom: clamp(50px, 6vw, 90px);
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(40px, 8vw, 130px);
}

.family-header h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(68px, 9vw, 150px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.family-header h2 em {
  display: block;
  color: var(--lavender-deep);
  font-size: 0.5em;
  font-weight: 400;
}

.family-header p {
  max-width: 560px;
  margin: 0;
  align-self: end;
  color: var(--ink-soft);
  line-height: 1.85;
}

.family-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(42px, 7vw, 120px);
}

.family-image {
  min-height: 620px;
}

.family-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06);
}

.class-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.class-list li {
  padding: 20px 0;
  display: grid;
  grid-template-columns: minmax(150px, 0.65fr) 1fr;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.class-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.class-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(23px, 2vw, 34px);
  font-weight: 500;
  line-height: 1.1;
}

.class-list p {
  margin: 2px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.75;
}

.staff-intro {
  padding: var(--section) var(--gutter) 50px;
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  align-items: end;
  gap: 70px;
}

.staff-intro h2 {
  margin: 20px 0 0;
  font-family: var(--display);
  font-size: clamp(52px, 6vw, 100px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.staff-intro p:last-child {
  margin: 0;
  color: var(--ink-soft);
}

.staff-grid {
  padding: 30px var(--gutter) var(--section);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 30px);
}

.staff-card {
  position: relative;
}

.staff-card:nth-child(4n + 2),
.staff-card:nth-child(4n + 4) {
  margin-top: 70px;
}

.staff-photo,
.staff-monogram {
  aspect-ratio: 0.82;
  overflow: hidden;
  background: var(--lavender-pale);
}

.staff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
}

.staff-monogram {
  position: relative;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--lavender-pale), var(--lavender-light));
}

.staff-monogram span {
  font-family: var(--display);
  font-size: clamp(46px, 5vw, 84px);
  letter-spacing: -0.06em;
}

.staff-card h3 {
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.staff-card p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.staff-card.featured {
  grid-column: span 2;
}

.staff-card.featured .staff-photo {
  aspect-ratio: 1.7;
}

.works {
  background: var(--ink);
  color: var(--white);
}

.work {
  min-height: 760px;
  padding: var(--section) var(--gutter);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(50px, 8vw, 140px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.work:nth-child(even) .work-image {
  order: 2;
}

.work-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.work-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.work-year {
  margin-bottom: 24px;
  display: block;
  color: var(--lavender-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.work-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 6vw, 104px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.88;
}

.work-copy p {
  max-width: 590px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.67);
  line-height: 1.85;
}

.work-no-photo {
  background: var(--lavender-deep);
}

.work-no-photo .work-image {
  display: grid;
  place-items: center;
}

.work-no-photo .work-image span {
  font-family: var(--display);
  font-size: clamp(100px, 16vw, 260px);
  opacity: 0.2;
}

.info-lead {
  padding: var(--section) var(--gutter);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(50px, 8vw, 140px);
  background: var(--lavender-pale);
}

.info-date {
  display: flex;
  align-items: center;
  gap: 24px;
}

.info-date span {
  font-family: var(--display);
  font-size: clamp(130px, 16vw, 270px);
  letter-spacing: -0.11em;
  line-height: 0.75;
}

.info-date p {
  margin: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.info-copy h2,
.downloads h2,
.calendar h2,
.contact-details h2 {
  margin: 16px 0 24px;
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 84px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.info-copy > p {
  max-width: 570px;
  color: var(--ink-soft);
}

.download-feature {
  margin-top: 38px;
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.download-feature strong {
  display: block;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
}

.download-feature small {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.download-feature b {
  font-size: 24px;
  font-weight: 400;
}

.calendar {
  padding: var(--section) var(--gutter);
  background: var(--paper);
}

.calendar-intro {
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 60px;
  align-items: end;
}

.calendar-intro p:last-child {
  margin: 0;
  color: var(--ink-soft);
}

.calendar-table {
  width: 100%;
  border-collapse: collapse;
}

.calendar-table th,
.calendar-table td {
  padding: 20px 12px;
  border-top: 1px solid var(--line);
  text-align: left;
}

.calendar-table th {
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.calendar-table td:first-child {
  font-family: var(--display);
  font-size: clamp(21px, 2vw, 30px);
}

.calendar-table td:last-child {
  width: 34%;
  color: var(--ink-soft);
  font-size: 12px;
}

.downloads {
  padding: var(--section) var(--gutter);
  background: var(--lavender);
}

.downloads-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 50px;
}

.download-link {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(23, 21, 26, 0.25);
  font-family: var(--display);
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.15;
}

.download-link span:last-child {
  flex: 0 0 auto;
  font-family: var(--sans);
  font-size: 15px;
}

.contact-hero {
  min-height: 760px;
  padding: 170px var(--gutter) 80px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 80px;
  background: var(--lavender);
}

.contact-hero h1 {
  font-size: clamp(74px, 10vw, 165px);
}

.contact-card {
  padding: clamp(35px, 4vw, 60px);
  background: var(--ink);
  color: var(--white);
}

.contact-card dl {
  margin: 0;
}

.contact-card div {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 85px 1fr;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-card dt {
  color: var(--lavender-light);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.3;
}

.contact-card dd a:hover {
  color: var(--lavender-light);
}

.contact-details {
  padding: var(--section) var(--gutter);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(50px, 8vw, 140px);
  background: var(--paper);
}

.contact-intro > p {
  margin-top: 24px;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-option {
  min-height: 240px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.contact-option:nth-child(even) {
  border-right: 0;
}

.contact-option span {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-option strong {
  font-family: var(--display);
  font-size: clamp(25px, 2.5vw, 42px);
  font-weight: 500;
  line-height: 1.08;
}

.map-block {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: var(--ink);
  color: var(--white);
}

.map-block img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.03);
}

.map-copy {
  padding: var(--section) var(--gutter) var(--section) clamp(50px, 7vw, 110px);
  align-self: center;
}

.map-copy h2 {
  margin: 20px 0 32px;
  font-family: var(--display);
  font-size: clamp(55px, 6vw, 100px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.map-copy p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1280px) {
  .site-header {
    grid-template-columns: minmax(220px, 1fr) auto;
  }

  .main-nav {
    gap: clamp(12px, 1.5vw, 20px);
  }

  .header-cta {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(470px, 49%) 1fr;
  }

  .hero h1 {
    font-size: clamp(70px, 8.2vw, 100px);
  }

  .disciplines {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .disciplines > p {
    display: none;
  }

  .scroll-cue {
    width: 49%;
  }

  .course-card {
    grid-column: span 6;
    min-height: 540px;
  }

  .course-card:nth-child(2),
  .course-card:nth-child(4) {
    margin-top: 0;
  }

  .season-note {
    grid-template-columns: 0.6fr 1.4fr;
  }

  .season-note > p,
  .season-note > .button {
    grid-column: 2;
  }

  .staff-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .staff-card:nth-child(4n + 2),
  .staff-card:nth-child(4n + 4) {
    margin-top: 0;
  }

  .staff-card:nth-child(3n + 2) {
    margin-top: 55px;
  }
}

@media (max-width: 900px) {
  .site-header,
  .inner-page .site-header {
    position: fixed;
    min-height: 78px;
    padding: 0 20px;
    grid-template-columns: 1fr auto;
    background: rgba(170, 157, 204, 0.95);
    color: var(--ink);
  }

  .inner-page .brand img {
    filter: none;
    mix-blend-mode: multiply;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    z-index: 31;
    width: 44px;
    height: 44px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
  }

  .menu-toggle span {
    width: 26px;
    height: 1px;
    display: block;
    background: var(--ink);
    transition: transform 0.25s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 30;
    inset: 0;
    padding: 106px 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    background: var(--lavender-pale);
    color: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .main-nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: clamp(29px, 8vw, 38px);
    font-weight: 500;
    letter-spacing: -0.04em;
    text-transform: none;
  }

  .hero {
    height: auto;
    min-height: 100svh;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 640px;
    padding: 124px 24px 64px;
  }

  .hero-copy::before {
    right: -42px;
    width: 110px;
  }

  .hero h1 {
    font-size: clamp(65px, 20vw, 92px);
  }

  .hero-lead {
    max-width: 480px;
    margin-top: 30px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .hero-meta {
    margin-top: 42px;
  }

  .hero-visual {
    min-height: 680px;
  }

  .hero-photo {
    object-position: 54% center;
  }

  .location-pill {
    top: 24px;
    left: 22px;
  }

  .vertical-note {
    top: 26px;
    right: 14px;
  }

  .disciplines {
    right: 20px;
    bottom: 24px;
    left: 20px;
  }

  .scroll-cue {
    display: none;
  }

  .editorial-intro,
  .split-heading,
  .performance-feature,
  .season-note,
  .statement,
  .family-header,
  .family-layout,
  .staff-intro,
  .work,
  .info-lead,
  .calendar-intro,
  .contact-hero,
  .contact-details,
  .map-block,
  .inner-hero {
    grid-template-columns: 1fr;
  }

  .section-number {
    display: none;
  }

  .intro-copy {
    padding-top: 0;
  }

  .course-card {
    min-height: 500px;
  }

  .performance-copy {
    margin: -100px 24px 0;
    padding: 60px 40px;
    background: rgba(23, 21, 26, 0.94);
  }

  .name-line {
    grid-template-columns: 1fr 1fr;
  }

  .name-line span:nth-child(2) {
    border-right: 0;
  }

  .name-line span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .season-note > p,
  .season-note > .button {
    grid-column: auto;
  }

  .season-date {
    margin-top: 20px;
  }

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

  .footer-nav {
    grid-column: 1 / -1;
  }

  .inner-hero {
    min-height: 720px;
    padding-top: 150px;
    align-content: end;
  }

  .inner-hero-number {
    top: 110px;
  }

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

  .venue-main {
    min-height: 520px;
  }

  .venue-side {
    min-height: 440px;
    margin-top: 0;
  }

  .detail-strip {
    grid-template-columns: 1fr 1fr;
  }

  .detail-strip article:nth-child(2) {
    border-right: 0;
  }

  .course-jump-nav {
    top: 78px;
    padding: 0;
  }

  .family-image {
    min-height: 500px;
  }

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

  .staff-card:nth-child(3n + 2) {
    margin-top: 0;
  }

  .staff-card:nth-child(even) {
    margin-top: 45px;
  }

  .work:nth-child(even) .work-image {
    order: 0;
  }

  .work-image {
    min-height: 500px;
  }

  .info-date {
    justify-content: center;
  }

  .contact-hero {
    padding-top: 135px;
  }

  .map-copy {
    padding-left: var(--gutter);
  }
}

@media (max-width: 600px) {
  :root {
    --gutter: 22px;
    --section: 84px;
  }

  .hero-copy {
    min-height: 630px;
  }

  .eyebrow {
    font-size: 7px;
  }

  .hero h1 {
    font-size: clamp(60px, 19vw, 78px);
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-meta p {
    grid-template-columns: 50px 1fr;
  }

  .hero-visual {
    min-height: 600px;
  }

  .disciplines {
    padding: 24px 22px;
  }

  .disciplines ul {
    grid-template-columns: 1fr;
  }

  .intro-heading h2,
  .section-heading h2,
  .performance-copy h2,
  .season-note h2,
  .trial-cta h2,
  .statement h2,
  .contact-hero h1 {
    font-size: clamp(48px, 15vw, 70px);
  }

  .course-grid {
    display: block;
  }

  .course-card {
    min-height: 500px;
    margin-bottom: 18px;
    display: block;
  }

  .performance-image {
    min-height: 470px;
  }

  .performance-copy {
    margin: -60px 16px 0;
    padding: 48px 24px;
  }

  .name-line {
    grid-template-columns: 1fr;
  }

  .name-line span,
  .name-line span:nth-child(2) {
    min-height: 100px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trial-actions {
    align-items: center;
    flex-direction: column;
  }

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

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

  .inner-hero {
    min-height: 650px;
    padding-top: 130px;
  }

  .inner-hero h1 {
    font-size: clamp(62px, 21vw, 92px);
  }

  .inner-hero-aside {
    padding-left: 18px;
  }

  .inner-hero-number {
    display: none;
  }

  .detail-strip,
  .course-jump-nav,
  .staff-grid,
  .downloads-grid,
  .contact-options {
    grid-template-columns: 1fr;
  }

  .detail-strip article,
  .detail-strip article:nth-child(2) {
    min-height: 140px;
    border-right: 0;
  }

  .detail-strip h3 {
    margin-top: 26px;
  }

  .course-jump-nav {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .course-jump-nav a:nth-child(2) {
    border-right: 0;
  }

  .course-jump-nav a:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .family-layout {
    gap: 36px;
  }

  .family-image,
  .venue-main,
  .venue-side,
  .work-image {
    min-height: 420px;
  }

  .class-list li {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .staff-card,
  .staff-card:nth-child(even) {
    margin-top: 0;
  }

  .staff-card.featured {
    grid-column: auto;
  }

  .staff-card.featured .staff-photo {
    aspect-ratio: 0.82;
  }

  .staff-card h3 {
    font-size: 21px;
  }

  .work {
    min-height: 0;
  }

  .calendar-table th,
  .calendar-table td {
    padding: 17px 7px;
  }

  .calendar-table td:last-child {
    width: 42%;
    font-size: 10px;
  }

  .download-link {
    font-size: 21px;
  }

  .contact-hero {
    min-height: 720px;
    gap: 45px;
  }

  .contact-card {
    padding: 28px 22px;
  }

  .contact-card div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-option,
  .contact-option:nth-child(even) {
    min-height: 190px;
    border-right: 0;
  }

  .map-block img {
    min-height: 450px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
