@font-face {
  font-family: "Source Sans Pro";
  src: url("../fonts/SourceSansPro-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans Pro";
  src: url("../fonts/SourceSansPro-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans Pro";
  src: url("../fonts/SourceSansPro-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "DM Serif Display";
  src: url("../fonts/DMSerifDisplay-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DM Serif Display";
  src: url("../fonts/DMSerifDisplay-Italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #121313;
  --muted: #666b6b;
  --paper: #ffffff;
  --cream: #f4f1eb;
  --cream-deep: #eae4db;
  --line: #dedede;
  --purple: #8b5cf6;
  --teal: #14b8a6;
  --accent: linear-gradient(90deg, var(--purple), var(--teal));
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Source Sans Pro", Arial, sans-serif;
  --wide: 1200px;
  --content: 820px;
}

* {
  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: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--purple);
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
}

p:first-child {
  margin-top: 0;
}

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

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

.site-header {
  padding: 48px 28px 0;
  background: var(--paper);
}

.site-header__inner {
  max-width: var(--wide);
  margin: 0 auto;
}

.site-title {
  margin: 0 0 46px;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
}

.site-title a {
  text-decoration: none;
}

.site-nav {
  position: relative;
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.site-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3.5vw, 46px);
  min-height: 70px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  font-size: 0.93rem;
  text-decoration: none;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 12px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 180ms ease;
}

.site-nav__link:hover::after,
.site-nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav__link[aria-current="page"] {
  color: var(--purple);
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  font: inherit;
}

.main-shell {
  width: min(calc(100% - 44px), var(--wide));
  margin: 0 auto;
  padding: 94px 0 110px;
}

.narrow-shell {
  width: min(calc(100% - 44px), var(--content));
  margin: 0 auto;
  padding: 94px 0 110px;
}

.page-heading {
  margin-bottom: 58px;
  text-align: center;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.page-heading::after,
.section-heading::after {
  content: "";
  display: block;
  width: 74px;
  height: 2px;
  margin: 20px auto 0;
  background: var(--accent);
}

.section-heading {
  margin-bottom: 48px;
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 24px;
  border: 1px solid rgba(18, 19, 19, 0.2);
  border-radius: 999px;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(18, 19, 19, 0.12);
}

.button--dark {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.button--dark:hover {
  color: #fff;
}

/* Home */
.home-hero {
  position: relative;
  overflow: visible;
  min-height: clamp(820px, calc(100svh - 70px), 980px);
  margin-top: 120px;
  margin-bottom: 70px;
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 255, 255, 0.96) 0, transparent 27%),
    radial-gradient(circle at 52% 90%, rgba(139, 92, 246, 0.045) 0, transparent 28%),
    linear-gradient(90deg, #f7f4ee 0, var(--cream) 48%, var(--cream-deep) 100%);
}

.home-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18, 19, 19, 0.12), transparent);
  content: "";
}

.home-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(28px, 3vw, 58px);
  width: min(calc(100% - 84px), 1520px);
  min-height: clamp(820px, calc(100svh - 70px), 980px);
  margin: 0 auto;
  padding: 62px 0;
}

.home-hero__copy {
  position: relative;
  z-index: 3;
  padding-left: clamp(0px, 1.4vw, 22px);
}

.home-hero__eyebrow {
  display: inline-block;
  margin-bottom: 30px;
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(18, 19, 19, 0.22);
  color: rgba(18, 19, 19, 0.58);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.home-hero__title {
  margin-bottom: 40px;
  font-size: clamp(4.5rem, 7.1vw, 8.2rem);
  letter-spacing: -0.06em;
  line-height: 0.79;
}

.home-hero__title span {
  display: block;
}

.home-hero__role {
  width: max-content;
  margin-top: 26px;
  background: var(--accent);
  background-clip: text;
  color: transparent;
  font-size: 0.46em;
  font-style: italic;
  letter-spacing: 0.02em;
}

.home-hero__copy > .eyebrow {
  margin: 0 0 12px 2px;
  color: rgba(18, 19, 19, 0.48);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
}

.press-quote {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: #555b58;
  font-family: var(--serif);
  font-size: clamp(1.14rem, 1.42vw, 1.38rem);
  font-style: italic;
  line-height: 1.42;
  text-wrap: pretty;
}

.press-carousel {
  position: relative;
  z-index: 4;
  display: grid;
  width: min(124%, 700px);
  margin: 0 -112px 0 0;
  padding: 27px 35px 31px;
  overflow: hidden;
  border: 1px solid rgba(18, 19, 19, 0.1);
  border-radius: 2px;
  background: rgba(249, 247, 242, 0.94);
  box-shadow: 0 24px 60px rgba(18, 19, 19, 0.12);
  backdrop-filter: blur(12px);
}

.press-carousel::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--purple), var(--teal));
  content: "";
}

.press-carousel::after {
  position: absolute;
  z-index: 0;
  right: 24px;
  bottom: -26px;
  color: rgba(18, 19, 19, 0.055);
  content: "“";
  font-family: var(--serif);
  font-size: 8rem;
  font-style: italic;
  line-height: 1;
  pointer-events: none;
}

.press-carousel__slide {
  position: relative;
  z-index: 1;
  grid-area: 1 / 1;
  display: block;
  visibility: hidden;
  opacity: 0;
  filter: blur(2px);
  transform: translateY(14px);
  transition: opacity 520ms ease, filter 520ms ease, transform 520ms ease, visibility 0s linear 520ms;
}

.press-carousel__slide--short .press-quote {
  font-size: clamp(1.2rem, 1.5vw, 1.44rem);
  line-height: 1.41;
}

.press-carousel__slide.is-active {
  visibility: visible;
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition-delay: 0s;
}

.press-carousel__slide.is-leaving {
  visibility: visible;
  opacity: 0;
  filter: blur(2px);
  transform: translateY(-12px);
}

.press-carousel .press-quote {
  margin-bottom: 0;
}

.press-carousel__progress {
  position: absolute;
  right: 35px;
  bottom: 0;
  left: 35px;
  height: 1px;
  overflow: hidden;
  background: rgba(18, 19, 19, 0.07);
}

.press-carousel__progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  animation: press-carousel-progress 7s linear infinite;
}

@keyframes press-carousel-progress {
  to {
    transform: scaleX(1);
  }
}

.press-source {
  display: block;
  margin: 15px 0 0;
  padding-top: 0;
  color: #7c817e;
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.home-hero__image {
  position: relative;
  z-index: 1;
  align-self: center;
  width: calc(100% + max(42px, (100vw - 1520px) / 2));
  height: clamp(864px, calc(100svh + 44px), 1044px);
  min-height: 0;
  margin: -130px calc(0px - max(42px, (100vw - 1520px) / 2)) -130px 0;
  overflow: hidden;
  border-radius: 3px 0 0 3px;
  box-shadow: -26px 34px 72px rgba(18, 19, 19, 0.16);
}

.home-hero__image::after {
  position: absolute;
  z-index: 2;
  top: 38px;
  bottom: 38px;
  left: 22px;
  width: 1px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 1px 0 rgba(18, 19, 19, 0.14);
  content: "";
}

.home-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: saturate(0.9) contrast(1.025);
}

.social-intro {
  padding: 120px 22px 44px;
  text-align: center;
}

.social-intro p {
  color: var(--muted);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 28px 0 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}

.social-link svg,
.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  width: min(calc(100% - 30px), 1500px);
  margin: 0 auto 130px;
}

.photo-grid figure {
  aspect-ratio: 1;
  overflow: hidden;
  margin: 0;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
  transition: transform 500ms ease, filter 500ms ease;
}

.photo-grid figure:hover img {
  transform: scale(1.035);
  filter: saturate(1);
}

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

.philosophy__inner {
  width: min(calc(100% - 44px), 800px);
  margin: 0 auto;
  padding: 14px 0 130px;
}

.philosophy h2 {
  margin-bottom: 42px;
  text-align: center;
  font-size: clamp(2.35rem, 5vw, 3.7rem);
}

.philosophy__copy {
  color: var(--muted);
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.philosophy__copy p + p {
  margin-top: 1.4em;
}

.philosophy__author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
  color: var(--ink);
}

.philosophy__author img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
}

.philosophy__author strong,
.philosophy__author span {
  display: block;
}

.philosophy__author span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.86rem;
}

/* Vita and blog */
.bio-card {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr;
  align-items: stretch;
  gap: 28px;
  width: min(100%, 1000px);
  margin: 0 auto 110px;
}

.bio-card__copy {
  padding: clamp(32px, 5vw, 60px);
  background: #050505;
  color: #fff;
}

.bio-card__copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  text-transform: uppercase;
}

.bio-card__copy p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.bio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resume-link {
  display: flex;
  justify-content: center;
  margin: -70px 0 82px;
}

.resume-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  min-height: 0;
  padding: 12px 0;
  border-top: 1px solid #ddd8d1;
  border-bottom: 1px solid #ddd8d1;
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 180ms ease, border-color 180ms ease;
}

.resume-button__icon {
  color: var(--purple);
  font-size: 0.95rem;
  line-height: 1;
  text-decoration: none;
}

.resume-button:hover {
  border-color: #beb5aa;
  color: var(--purple);
}

.resume-button:focus-visible {
  outline: 3px solid rgba(139, 92, 246, 0.35);
  outline-offset: 4px;
}

.short-bio {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 0.72fr) minmax(0, 1.6fr);
  gap: clamp(40px, 6vw, 82px);
  width: min(100%, 1000px);
  margin: 0 auto 132px;
  padding: clamp(42px, 6vw, 72px);
  overflow: hidden;
  border: 1px solid #ececea;
  border-radius: 3px;
  background:
    radial-gradient(circle at 0 0, rgba(139, 92, 246, 0.025), transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(20, 184, 166, 0.02), transparent 32%),
    #fcfcfb;
  box-shadow:
    inset 0 0 26px rgba(18, 19, 19, 0.072),
    inset 0 1px 4px rgba(18, 19, 19, 0.068);
}

.short-bio__heading {
  position: relative;
  align-self: start;
  padding-top: 4px;
}

.short-bio__eyebrow {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.short-bio__heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.45rem, 4.4vw, 4rem);
  line-height: 0.96;
}

.short-bio__heading h2::after {
  display: block;
  width: 70px;
  height: 1px;
  margin-top: 30px;
  background: var(--ink);
  content: "";
}

.short-bio__stamp {
  --stamp-wax-edge: -10px;
  position: absolute;
  bottom: calc(clamp(42px, 6vw, 72px) + 100px);
  left: calc(clamp(42px, 6vw, 72px) + 98px);
  display: block;
  width: 88px;
  height: 88px;
  margin: 0;
  transform: rotate(8deg);
  filter: drop-shadow(0 4px 5px rgba(18, 19, 19, 0.18));
}

.short-bio__stamp::before {
  position: absolute;
  z-index: 0;
  inset: var(--stamp-wax-edge);
  border-radius: 47% 53% 45% 55% / 54% 45% 55% 46%;
  background:
    radial-gradient(circle at 31% 25%, rgba(255, 255, 255, 0.17), transparent 19%),
    radial-gradient(circle at 72% 75%, rgba(255, 255, 255, 0.055), transparent 25%),
    linear-gradient(145deg, #1b1b1b 0%, #080808 58%, #131313 100%);
  box-shadow:
    -8px 3px 0 -5px #0a0a0a,
    8px -6px 0 -6px #101010,
    9px 8px 0 -6px #080808,
    -5px -8px 0 -7px #151515,
    inset 5px 5px 9px rgba(255, 255, 255, 0.075),
    inset -6px -7px 11px rgba(0, 0, 0, 0.72);
  content: "";
}

.short-bio__stamp::after {
  position: absolute;
  z-index: 2;
  inset: 6px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  box-shadow:
    inset 2px 2px 4px rgba(255, 255, 255, 0.08),
    inset -3px -3px 6px rgba(0, 0, 0, 0.65);
  content: "";
}

.short-bio__stamp-mark {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.2);
}

.short-bio__copy {
  color: #343838;
  font-size: 0.98rem;
  line-height: 1.68;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.short-bio__copy p {
  margin: 0;
}

.short-bio__copy p + p {
  margin-top: 1.2em;
}

.short-bio__copy em {
  color: var(--ink);
  font-family: var(--serif);
}

.posts-list {
  width: min(100%, 980px);
  margin: 0 auto;
}

.post-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.post-card__image {
  display: block;
  aspect-ratio: 1.35;
  overflow: hidden;
  border-radius: 3px;
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--image-focus, 50% 50%);
  transition: transform 260ms ease;
}

.post-card__image:hover img {
  transform: scale(1.015);
}

.post-card h2,
.post-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.post-card h2 a,
.post-card h3 a {
  text-decoration: none;
}

.post-meta {
  color: var(--muted);
  font-size: 0.85rem;
}

.post-card p {
  color: #434747;
}

.article-shell {
  width: min(calc(100% - 44px), 1120px);
  margin: 0 auto;
  padding: 92px 0 120px;
  text-align: center;
}

.article-shell h1 {
  width: min(75vw, 980px);
  margin: 0 auto 18px;
  font-size: clamp(2.35rem, 5vw, 4.15rem);
  line-height: 1.03;
}

.article-hero {
  width: min(100%, 580px);
  aspect-ratio: 1.35;
  margin: 40px auto 54px;
  border-radius: 6px;
  display: block;
  object-fit: cover;
  object-position: var(--image-focus, 50% 50%);
}

.article-content {
  width: min(75vw, 980px);
  margin: 0 auto;
  font-size: 1.08rem;
  text-align: center;
}

@media (max-width: 700px) {
  .article-shell h1,
  .article-content {
    width: 100%;
  }
}

.article-content a {
  color: inherit;
  text-decoration-color: var(--purple);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color 160ms ease;
}

.article-content a:hover {
  color: var(--purple);
}

.article-social-link {
  margin: 36px 0;
  text-align: center;
}

.article-social-card {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(100%, 290px);
  margin: 0 auto;
  padding: 12px 14px;
  border: 1px solid #ddd8d1;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(18, 19, 19, 0.07);
  text-align: left;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.article-content .article-social-card:hover {
  border-color: #bfb6aa;
  color: inherit;
  transform: translateY(-2px);
  box-shadow: 0 11px 24px rgba(18, 19, 19, 0.1);
}

.article-social-card__icon {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--purple), var(--teal));
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
}

.article-social-card--instagram .article-social-card__icon {
  background: var(--accent);
  font-size: 1.55rem;
}

.article-social-card--facebook .article-social-card__icon {
  background: #1877f2;
}

.article-social-card--youtube .article-social-card__icon {
  background: #ff0033;
}

.article-social-card--linkedin .article-social-card__icon {
  background: #0a66c2;
  font-size: 0.95rem;
}

.article-social-card--tiktok .article-social-card__icon {
  background: #111;
}

.article-social-card__copy {
  min-width: 0;
}

.article-social-card__copy strong,
.article-social-card__copy small {
  display: block;
}

.article-social-card__copy strong {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.2;
}

.article-social-card__copy small {
  margin-top: 3px;
  color: #77726c;
  font-size: 0.76rem;
}

.article-social-card__arrow {
  margin-left: auto;
  color: var(--purple);
  font-size: 1rem;
}

.article-content h2,
.article-content h3 {
  margin-top: 2em;
}

.article-content a {
  color: var(--purple);
}

/* Repertoire */
.repertoire-main {
  width: min(calc(100% - 44px), 1160px);
  margin: 0 auto;
  padding: 70px 0 140px;
}

.repertoire-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: clamp(52px, 8vw, 120px);
  overflow: hidden;
  width: 100vw;
  min-height: clamp(430px, 48vw, 570px);
  margin-left: calc(50% - 50vw);
  padding: clamp(74px, 9vw, 116px) max(22px, calc((100vw - 1160px) / 2));
  border-top: 1px solid #ddd7ce;
  border-bottom: 1px solid #ddd7ce;
  background:
    radial-gradient(circle at 8% 12%, rgba(139, 92, 246, 0.11), transparent 30%),
    radial-gradient(circle at 92% 86%, rgba(20, 184, 166, 0.13), transparent 32%),
    linear-gradient(100deg, #faf8f4 0%, #f5f1eb 54%, #edf7f4 100%);
  text-align: left;
}

.repertoire-intro::before {
  content: none;
  position: absolute;
  top: 50%;
  right: 4%;
  color: rgba(18, 19, 19, 0.028);
  font-family: var(--serif);
  font-size: clamp(18rem, 34vw, 32rem);
  line-height: 0.7;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

.repertoire-intro > * {
  position: relative;
  z-index: 3;
}

.repertoire-intro::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(250, 248, 244, 0.82) 0%, rgba(250, 248, 244, 0.42) 35%, rgba(242, 246, 241, 0.52) 100%),
    linear-gradient(180deg, rgba(250, 248, 244, 0.36), transparent 28%, transparent 72%, rgba(237, 247, 244, 0.42));
  pointer-events: none;
}

.repertoire-intro__roles {
  position: absolute;
  z-index: 0;
  inset: -5% -2%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 100%);
  pointer-events: none;
}

.repertoire-intro__roles-layer {
  position: absolute;
  inset: 0;
}

.repertoire-intro__roles-layer img {
  position: absolute;
  top: 0;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: luminosity;
}

.repertoire-intro__roles-backdrop {
  opacity: 0.2;
  filter: grayscale(1) blur(30px) contrast(0.54) brightness(1.17);
}

.repertoire-intro__roles-backdrop img {
  width: 36%;
  transform: scale(1.08);
  mask-image: linear-gradient(90deg, transparent 0%, #000 40%, #000 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 40%, #000 60%, transparent 100%);
}

.repertoire-intro__roles-backdrop img:nth-child(1) {
  left: -8.88%;
}

.repertoire-intro__roles-backdrop img:nth-child(2) {
  left: 13%;
}

.repertoire-intro__roles-backdrop img:nth-child(3) {
  left: 32%;
}

.repertoire-intro__roles-backdrop img:nth-child(4) {
  left: 51%;
}

.repertoire-intro__roles-backdrop img:nth-child(5) {
  left: 68%;
  width: 40%;
}

.repertoire-intro__roles-subjects {
  opacity: 0.27;
  filter: grayscale(1) contrast(0.78) brightness(1.08) sepia(0.08);
}

.repertoire-intro__roles-subjects img {
  width: 29%;
  opacity: 0.82;
  mask-image: radial-gradient(ellipse 66% 94% at 50% 50%, #000 34%, rgba(0, 0, 0, 0.88) 55%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 66% 94% at 50% 50%, #000 34%, rgba(0, 0, 0, 0.88) 55%, transparent 100%);
}

.repertoire-intro__roles-subjects img:nth-child(odd) {
  z-index: 2;
}

.repertoire-intro__roles-subjects img:nth-child(even) {
  z-index: 1;
}

.repertoire-intro__roles-subjects img:nth-child(1) {
  left: -5.32%;
  object-position: 100% 42%;
}

.repertoire-intro__roles-subjects img:nth-child(2) {
  left: 18%;
  object-position: 53% 43%;
  mask-image: radial-gradient(ellipse 52% 96% at 50% 51%, #000 32%, rgba(0, 0, 0, 0.86) 58%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 52% 96% at 50% 51%, #000 32%, rgba(0, 0, 0, 0.86) 58%, transparent 100%);
}

.repertoire-intro__roles-subjects img:nth-child(3) {
  left: 39%;
  object-position: 50% 38%;
  mask-image: radial-gradient(ellipse 50% 94% at 50% 50%, #000 32%, rgba(0, 0, 0, 0.86) 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 50% 94% at 50% 50%, #000 32%, rgba(0, 0, 0, 0.86) 60%, transparent 100%);
}

.repertoire-intro__roles-subjects img:nth-child(4) {
  left: 61%;
  width: 23%;
  object-position: 51% 40%;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.22) 10%, rgba(0, 0, 0, 0.78) 22%, #000 32%, #000 72%, rgba(0, 0, 0, 0.76) 86%, rgba(0, 0, 0, 0.42) 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.22) 10%, rgba(0, 0, 0, 0.78) 22%, #000 32%, #000 72%, rgba(0, 0, 0, 0.76) 86%, rgba(0, 0, 0, 0.42) 100%);
}

.repertoire-intro__roles-subjects img:nth-child(5) {
  left: 78.88%;
  width: 23%;
  object-position: 52% 43%;
  mask-image: linear-gradient(90deg, transparent 0%, transparent 11%, rgba(0, 0, 0, 0.42) 14%, rgba(0, 0, 0, 0.76) 25%, #000 39%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 11%, rgba(0, 0, 0, 0.42) 14%, rgba(0, 0, 0, 0.76) 25%, #000 39%, #000 100%);
}

.repertoire-intro__kicker {
  align-self: end;
  margin-bottom: 22px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transform: translateY(clamp(24px, 3.15vw, 40px));
}

.repertoire-intro h1 {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  font-size: clamp(5.2rem, 10vw, 8.8rem);
  line-height: 0.9;
}

.repertoire-intro__copy {
  position: relative;
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  max-width: 42ch;
  margin: 0;
  padding-left: clamp(28px, 4vw, 48px);
  color: #575c59;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.6;
  transform: translateY(14px);
}

.repertoire-intro__copy::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 2px;
  background: linear-gradient(var(--purple), var(--teal));
}

.repertoire-index {
  position: sticky;
  z-index: 20;
  top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  width: max-content;
  max-width: calc(100% - 28px);
  margin: -25px auto 100px;
  padding: 8px;
  border: 1px solid rgba(75, 78, 77, 0.94);
  border-radius: 999px;
  background: rgba(20, 22, 22, 0.96);
  box-shadow: 0 12px 30px rgba(18, 19, 19, 0.19);
  backdrop-filter: blur(12px);
}

.repertoire-index a {
  padding: 9px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.repertoire-index a:hover,
.repertoire-index a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.repertoire-genre {
  scroll-margin-top: 100px;
  margin-bottom: 118px;
}

.repertoire-genre__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 20px;
  margin-bottom: 38px;
  padding-bottom: 22px;
  border-bottom: 1px solid #d9d4cc;
}

.repertoire-genre__number {
  background: var(--accent);
  background-clip: text;
  color: transparent;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 0.8;
}

.repertoire-genre__header h2 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.86;
}

.repertoire-genre__header p {
  margin-bottom: 3px;
  color: #77736d;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.repertoire-list {
  columns: 2;
  column-gap: 22px;
}

.composer-block {
  position: relative;
  overflow: hidden;
  break-inside: avoid;
  margin: 0 0 22px;
  padding: 28px;
  border: 1px solid #e0dbd3;
  border-radius: 18px;
  background: #fbfaf8;
  box-shadow: 0 8px 22px rgba(18, 19, 19, 0.055);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.composer-block::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0.72;
}

.composer-block:hover {
  border-color: #cfc6ba;
  box-shadow: 0 14px 30px rgba(18, 19, 19, 0.085);
  transform: translateY(-3px);
}

.composer-name {
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.08;
}

.repertoire-item {
  padding-top: 16px;
  border-top: 1px solid #e1ddd6;
}

.repertoire-item + .repertoire-item {
  margin-top: 18px;
}

.opera-title {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.06rem;
  font-style: italic;
  line-height: 1.25;
}

.role-name {
  display: inline-flex;
  margin-top: 8px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--cream);
  color: #353837;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.repertoire-meta {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.divider-center-accent,
.repertoire-category-heading {
  display: none;
}

/* Recordings */
.recordings-intro {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(410px, 38vw, 510px);
  margin-top: 72px;
  overflow: hidden;
  border-top: 1px solid #292b2b;
  border-bottom: 1px solid #292b2b;
  background:
    radial-gradient(circle at 9% 18%, rgba(139, 92, 246, 0.34), transparent 38%),
    radial-gradient(circle at 88% 78%, rgba(20, 184, 166, 0.31), transparent 40%),
    linear-gradient(108deg, #0e0d13 0%, #19191b 53%, #0d1413 100%);
}

.recordings-intro::before {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent 79px, rgba(255, 255, 255, 0.025) 80px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 34%, transparent 68%, rgba(255, 255, 255, 0.018));
  content: "";
  pointer-events: none;
}

.recordings-intro::after {
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 1px;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.13), transparent);
  box-shadow: 20px 0 44px rgba(139, 92, 246, 0.045), -20px 0 44px rgba(20, 184, 166, 0.035);
  content: "";
}

.recordings-intro__waveform {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 42%;
  opacity: 0.5;
  pointer-events: none;
}

.recordings-intro__waveform-line {
  fill: none;
  stroke: url(#recordings-wave-gradient);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
}

.recordings-intro__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
  gap: clamp(56px, 8vw, 132px);
  width: min(calc(100% - 84px), 1200px);
  margin: 0 auto;
  padding: 76px 0;
}

.recordings-intro__kicker {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.recordings-intro h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(5.4rem, 10vw, 9rem);
  letter-spacing: -0.05em;
  line-height: 0.82;
}

.recordings-intro__title::after {
  display: block;
  width: clamp(90px, 12vw, 156px);
  height: 2px;
  margin-top: 34px;
  background: var(--accent);
  content: "";
}

.recordings-intro__copy {
  position: relative;
  margin-bottom: 8px;
  padding: 10px 0 12px clamp(30px, 4vw, 52px);
}

.recordings-intro__copy::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: linear-gradient(var(--purple), var(--teal));
  content: "";
}

.recordings-intro__copy p {
  margin: 0 0 14px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 1.02;
}

.recordings-intro__copy span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.year-section {
  position: relative;
  padding: clamp(104px, 10vw, 150px) 0;
  background: #fbfaf7;
}

.year-section + .year-section {
  border-top: 1px solid #d0c8bd;
}

.year-section--current {
  background:
    radial-gradient(circle at 96% 4%, rgba(20, 184, 166, 0.055), transparent 27%),
    #f8f5ef;
}

.year-section--archive {
  background: #fff;
}

.year-section--archive + .year-section--archive {
  background: #f8f6f1;
}

.recordings-sheet {
  padding: 0;
}

.recordings-year-header {
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr);
  align-items: end;
  gap: 22px 36px;
  margin-bottom: clamp(66px, 8vw, 104px);
}

.recordings-year-header p {
  grid-column: 1 / -1;
  margin: 0;
  color: #77716a;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.recordings-year-header > span {
  height: 1px;
  margin-bottom: 13px;
  background: linear-gradient(90deg, #bbb2a7, rgba(187, 178, 167, 0.16));
}

.year-heading {
  margin: 0;
  font-size: clamp(4.8rem, 9vw, 7.6rem);
  letter-spacing: -0.045em;
  line-height: 0.78;
}

.record-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(46px, 7vw, 96px);
  margin: 0 0 clamp(92px, 10vw, 132px);
  padding: clamp(34px, 4vw, 54px) 0;
  border-top: 1px solid #d8d1c7;
  border-bottom: 1px solid #d8d1c7;
}

.record-feature:nth-of-type(even) .record-feature__copy {
  order: 2;
}

.record-feature__copy h3,
.video-group h3 {
  font-size: clamp(2.1rem, 3.8vw, 3.25rem);
  line-height: 1.04;
}

.record-feature__copy {
  position: relative;
  text-align: left;
}

.record-feature__copy::before {
  display: block;
  margin-bottom: 18px;
  color: #7a746d;
  content: "Featured Recording";
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.record-feature__copy h3 {
  margin-bottom: 22px;
}

.record-feature__copy p {
  max-width: 48ch;
  margin-bottom: 0;
  color: #66635f;
  line-height: 1.75;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 7px;
  border: 1px solid #cfc7bc;
  border-radius: 2px;
  background: #111;
  box-shadow: 0 22px 48px rgba(18, 19, 19, 0.1);
}

.video-frame iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-group {
  margin: 0 0 clamp(100px, 11vw, 144px);
  text-align: left;
}

.video-group:last-child {
  margin-bottom: 0;
}

.video-group h3 {
  margin-bottom: 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid #d8d1c7;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(22px, 3vw, 36px);
  counter-reset: recording;
}

.video-grid .video-frame {
  counter-increment: recording;
}

.video-grid .video-frame::before {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 15px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(13, 14, 14, 0.76);
  color: #fff;
  content: counter(recording, decimal-leading-zero);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  pointer-events: none;
}

.year-section--current .video-frame {
  border-color: #bdb4a7;
  box-shadow: 0 26px 58px rgba(18, 19, 19, 0.14);
}

/* Calendar */
.calendar-main {
  width: min(calc(100% - 44px), 1160px);
  margin: 0 auto;
  padding: 70px 0 140px;
}

.calendar-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  align-items: end;
  gap: clamp(48px, 8vw, 120px);
  overflow: hidden;
  width: 100vw;
  min-height: clamp(410px, 45vw, 540px);
  margin-left: calc(50% - 50vw);
  padding: clamp(76px, 9vw, 116px) max(22px, calc((100vw - 1160px) / 2));
  border-top: 1px solid #292b2b;
  border-bottom: 1px solid #292b2b;
  background:
    radial-gradient(circle at 10% 18%, rgba(20, 184, 166, 0.34), transparent 38%),
    radial-gradient(circle at 88% 82%, rgba(139, 92, 246, 0.38), transparent 40%),
    linear-gradient(105deg, #0d1211 0%, #1a171e 56%, #131019 100%);
}

.calendar-intro__kicker {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.calendar-intro h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(5rem, 9.5vw, 8.35rem);
  line-height: 0.82;
}

.calendar-period {
  position: relative;
  align-self: end;
  margin: 0 0 13px;
  padding: 25px 0 20px clamp(28px, 4vw, 48px);
  color: #f3f0eb;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.6vw, 4.3rem);
  line-height: 1;
  transform: translateY(16px);
}

.calendar-period::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: linear-gradient(var(--purple), var(--teal));
}

/* Shared editorial banner system */
.banner-page {
  --banner-height: 540px;
  --banner-transition-height: 22px;
  position: relative;
}

main.banner-page {
  padding-top: var(--banner-transition-height);
}

.banner-page::before {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  width: 100vw;
  height: var(--banner-transition-height);
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    #fff 0%,
    #f6f6f5 18%,
    #c7c8c6 52%,
    #5f6361 78%,
    #0b0c0c 100%
  );
  content: "";
  pointer-events: none;
}

.banner-page > :first-child {
  position: relative;
  z-index: 1;
}

.repertoire-intro,
.calendar-intro,
.recordings-intro {
  display: flex;
  align-items: center;
  width: 100vw;
  height: var(--banner-height);
  min-height: var(--banner-height);
  margin-top: 0;
  margin-left: calc(50% - 50vw);
  padding: 0;
  overflow: hidden;
  border-top: 0;
  border-bottom: 1px solid #292b2b;
  text-align: left;
}

.banner-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
  gap: clamp(56px, 8vw, 132px);
  width: min(calc(100% - 84px), 1160px);
  margin: 0 auto;
  padding: 0;
}

.banner-title {
  min-width: 0;
}

.banner-kicker,
.repertoire-intro__kicker,
.calendar-intro__kicker,
.recordings-intro__kicker {
  align-self: auto;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.3;
  text-transform: uppercase;
  transform: none;
}

.banner-title h1,
.repertoire-intro h1,
.calendar-intro h1,
.recordings-intro h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(5.2rem, 9.4vw, 8.6rem);
  letter-spacing: -0.05em;
  line-height: 0.84;
}

.banner-title::after,
.recordings-intro__title::after {
  display: block;
  width: clamp(94px, 10vw, 132px);
  height: 2px;
  margin-top: 28px;
  background: var(--accent);
  content: "";
}

.banner-aside,
.repertoire-intro__copy,
.calendar-period,
.recordings-intro__copy {
  position: relative;
  align-self: end;
  margin: 0 0 8px;
  padding: 10px 0 12px clamp(30px, 4vw, 52px);
  transform: none;
}

.banner-aside::before,
.repertoire-intro__copy::before,
.calendar-period::before,
.recordings-intro__copy::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  height: auto;
  transform: none;
  background: linear-gradient(var(--purple), var(--teal));
  content: "";
}

.calendar-period {
  width: auto;
  max-width: none;
  color: #f3f0eb;
  font-size: clamp(2.2rem, 4.6vw, 4.3rem);
  line-height: 1;
}

.repertoire-intro__copy {
  grid-column: auto;
  grid-row: auto;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.6;
}

.recordings-intro__inner {
  width: min(calc(100% - 84px), 1160px);
  padding: 0;
}

.recordings-intro__copy p {
  color: #fff;
}

/* Dark photographic treatment for the Repertoire banner. */
.repertoire-intro {
  background:
    radial-gradient(circle at 9% 18%, rgba(139, 92, 246, 0.32), transparent 37%),
    radial-gradient(circle at 90% 80%, rgba(20, 184, 166, 0.3), transparent 39%),
    linear-gradient(108deg, #0d1010 0%, #1b191d 53%, #0e1212 100%);
}

.repertoire-intro::after {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8, 9, 9, 0.56) 0%, rgba(8, 9, 9, 0.25) 36%, rgba(9, 10, 11, 0.4) 100%),
    linear-gradient(180deg, rgba(8, 9, 9, 0.16), transparent 26%, transparent 70%, rgba(8, 9, 9, 0.27));
}

.repertoire-intro__roles-backdrop {
  opacity: 0.44;
  filter: grayscale(0.92) blur(30px) contrast(0.9) brightness(0.9);
}

.repertoire-intro__roles-subjects {
  opacity: 0.66;
  filter: grayscale(0.82) contrast(1.04) brightness(0.96) sepia(0.04);
}

.calendar-intro + .calendar-section {
  margin-top: 104px;
}

.calendar-section {
  scroll-margin-top: 100px;
  margin-bottom: 126px;
}

.calendar-section:last-child {
  margin-bottom: 0;
}

.calendar-section__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 20px;
  margin-bottom: 42px;
  padding-bottom: 22px;
  border-bottom: 1px solid #d9d4cc;
}

.calendar-section__number {
  background: var(--accent);
  background-clip: text;
  color: transparent;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 0.8;
}

.calendar-section__header h2 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.86;
}

.calendar-section__header p {
  margin-bottom: 3px;
  color: #77736d;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calendar-events {
  display: grid;
  gap: 52px;
}

.calendar-status {
  padding: 54px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfaf8;
  color: var(--muted);
  text-align: center;
}

.calendar-status[hidden] {
  display: none;
}

.calendar-year-group[hidden],
.calendar-event[hidden] {
  display: none;
}

.calendar-year-marker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  color: #77736d;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.calendar-year-marker::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e0dbd3;
}

.calendar-year-events {
  display: grid;
  gap: 18px;
}

.calendar-event {
  position: relative;
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  padding: 34px 38px;
  overflow: visible;
  border: 1px solid #e0dbd3;
  border-radius: 18px;
  background: #fbfaf8;
  box-shadow: 0 8px 22px rgba(18, 19, 19, 0.045);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.calendar-event__accent {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.calendar-event__accent::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0.72;
}

.calendar-event:hover,
.calendar-event:focus-within {
  z-index: 40;
  transform: translateY(-2px);
  border-color: #cfc6ba;
  box-shadow: 0 14px 30px rgba(18, 19, 19, 0.075);
}

.calendar-event:has(.calendar-add.is-open),
.calendar-event:has(.calendar-add.is-hovered) {
  z-index: 40;
}

.calendar-event:has(.calendar-add.is-closing) {
  z-index: 60;
}

.calendar-event--featured {
  grid-template-columns: 152px minmax(0, 1fr);
  gap: clamp(38px, 6vw, 76px);
  padding: clamp(42px, 6vw, 68px);
  border-color: #d5cdc2;
  background:
    radial-gradient(circle at 96% 8%, rgba(20, 184, 166, 0.09), transparent 35%),
    linear-gradient(110deg, #fbf9f6, #f6f2ec);
  box-shadow: 0 16px 38px rgba(18, 19, 19, 0.075);
}

.calendar-event--featured .calendar-event__accent::before {
  height: 4px;
  background: linear-gradient(90deg, #7145ef 0%, var(--purple) 32%, #28c6b5 72%, #0ba693 100%);
  opacity: 1;
  box-shadow: 0 3px 12px rgba(93, 91, 220, 0.24);
}

.calendar-event--featured .calendar-event__accent::after {
  position: absolute;
  top: 3px;
  right: 4%;
  left: 4%;
  height: 16px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.18), rgba(20, 184, 166, 0.16));
  filter: blur(9px);
  content: "";
}

.calendar-event--past {
  background: #f9f8f5;
  box-shadow: none;
}

.calendar-event--past .calendar-event__accent::before {
  height: 2px;
  background: linear-gradient(90deg, #aaa3b8, #a4b8b4);
  opacity: 0.38;
}

.calendar-event__date {
  padding-right: 28px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.calendar-event__month,
.calendar-event__year {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.calendar-event__day {
  display: block;
  margin: 2px 0;
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
}

.calendar-event--featured .calendar-event__day {
  font-size: clamp(3.8rem, 7vw, 5.5rem);
}

.calendar-event__eyebrow,
.calendar-event__type {
  margin: 0 0 10px;
  color: #706b65;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.calendar-event__eyebrow {
  background: var(--accent);
  background-clip: text;
  color: transparent;
}

.calendar-event__body h4 {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.calendar-event--featured .calendar-event__body h4 {
  font-size: clamp(2.3rem, 4.4vw, 4rem);
}

.calendar-event__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.calendar-event__meta-item {
  display: inline-flex;
  align-items: flex-start;
  gap: 7px;
}

.calendar-event__meta-item svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  margin-top: 2px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: color-mix(in srgb, var(--purple) 62%, var(--teal));
}

.calendar-event__location {
  color: inherit;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.calendar-event__location:hover,
.calendar-event__location:focus-visible {
  color: var(--ink);
  text-decoration-color: color-mix(in srgb, var(--purple) 55%, var(--teal));
}

.calendar-event__description {
  max-width: 68ch;
  margin: 18px 0 0;
  color: #595a57;
  font-family: var(--sans);
  font-size: clamp(0.96rem, 1.2vw, 1.03rem);
  line-height: 1.68;
  letter-spacing: 0.005em;
  overflow-wrap: anywhere;
  white-space: pre-line;
}

.calendar-event__description strong {
  color: #333431;
  font-weight: 700;
}

.calendar-event__description em {
  font-style: italic;
}

.calendar-event__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 9px;
  margin: 22px 0 0;
}

.calendar-event__action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
  height: 38px;
  padding: 9px 13px;
  border: 1px solid #d4cec5;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease;
}

.calendar-event__action:hover,
.calendar-event__action:focus-visible {
  border-color: #bdb3a6;
  background: var(--cream);
}

.calendar-event__action svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.calendar-add {
  position: relative;
  z-index: 5;
  flex: 0 1 auto;
}

.calendar-add::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: min(290px, calc(100vw - 64px));
  height: 13px;
}

.calendar-add__trigger {
  width: max-content;
}

.calendar-add.is-open .calendar-add__trigger {
  border-color: #bdb3a6;
  background: var(--cream);
}

.calendar-add__menu {
  position: absolute;
  top: calc(100% + 9px);
  left: 0;
  z-index: 30;
  display: grid;
  gap: 4px;
  width: min(290px, calc(100vw - 64px));
  padding: 8px;
  border: 1px solid #ded8cf;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(18, 19, 19, 0.09);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: visibility 0s linear 140ms, opacity 140ms ease, transform 140ms ease;
}

.calendar-add.is-hovered .calendar-add__menu,
.calendar-add.is-open .calendar-add__menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

@media (hover: hover) and (pointer: fine) {
  .calendar-add:hover .calendar-add__menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }
}

.calendar-add__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 10px;
  border-radius: 8px;
  color: #4f514f;
  font-size: 0.78rem;
  font-weight: 650;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.calendar-add__option:hover,
.calendar-add__option:focus-visible {
  background: var(--cream);
  color: var(--ink);
}

.calendar-add__note {
  margin: 4px 10px 3px;
  color: #8a8580;
  font-size: 0.67rem;
  line-height: 1.4;
}

.calendar-more {
  display: block;
  margin: 42px auto 0;
  padding: 12px 18px;
  border: 1px solid #cfc7bd;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: 700 0.76rem/1 var(--sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.calendar-more:hover,
.calendar-more:focus-visible {
  border-color: #b8aea1;
  background: var(--cream);
  transform: translateY(-1px);
}

.calendar-more[hidden] {
  display: none;
}

/* Contact */
.contact-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact-portrait {
  width: 170px;
  aspect-ratio: 1;
  margin: 0 auto 28px;
  overflow: hidden;
  border-radius: 50%;
}

.contact-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-card h1 {
  font-size: clamp(2.7rem, 6vw, 4.8rem);
}

.contact-card > p {
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

/* Footer */
.site-footer {
  margin-top: auto;
  padding: 0 28px 32px;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 45px;
  max-width: var(--wide);
  margin: 0 auto;
  padding: 52px 0 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.footer-quote {
  padding-right: 34px;
}

.footer-quote h2,
.footer-contact h2 {
  font-size: 1.45rem;
}

.footer-quote p,
.footer-contact p {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-mark {
  justify-self: center;
  width: 106px;
  height: 106px;
  overflow: hidden;
  border-radius: 50%;
  background: #000;
}

.footer-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-contact {
  text-align: right;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.footer-social a {
  text-decoration: none;
}

.footer-bottom {
  max-width: var(--wide);
  margin: 0 auto;
  padding-top: 20px;
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-bottom a {
  margin-right: 10px;
  color: var(--ink);
  font-weight: 600;
}

@media (min-width: 901px) and (max-width: 1120px) {
  .home-hero__inner {
    grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
    gap: 24px;
    width: calc(100% - 48px);
  }

  .home-hero__title {
    font-size: clamp(4.25rem, 7vw, 5.25rem);
  }

  .press-carousel {
    width: calc(100% + 82px);
    margin-right: -82px;
    padding-right: 30px;
    padding-left: 30px;
  }

  .home-hero__image {
    width: calc(100% + 24px);
    margin-right: -24px;
  }
}

@media (max-width: 900px) {
  body {
    font-size: 16px;
  }

  .home-hero {
    overflow: hidden;
    margin-top: 64px;
    margin-bottom: 0;
  }

  .home-hero,
  .home-hero__inner {
    min-height: auto;
  }

  .home-hero__inner {
    grid-template-columns: 1fr;
    gap: 52px;
    width: min(calc(100% - 32px), 820px);
    padding: 0 0 96px;
  }

  .home-hero__image {
    order: -1;
    align-self: auto;
    width: calc(100% + 32px);
    height: auto;
    max-width: none;
    min-height: 0;
    max-height: 760px;
    aspect-ratio: 4 / 5;
    margin: 0 0 0 -16px;
    border-radius: 0;
    box-shadow: 0 24px 56px rgba(18, 19, 19, 0.14);
  }

  .home-hero__image::after {
    top: 28px;
    bottom: 28px;
    left: 20px;
  }

  .home-hero__copy {
    padding: 0 clamp(0px, 4vw, 34px);
    text-align: center;
  }

  .home-hero__role {
    margin-right: auto;
    margin-left: auto;
  }

  .press-carousel {
    width: min(calc(100% + 18px), 680px);
    margin-right: auto;
    margin-left: max(-9px, calc((100% - 680px) / 2));
    padding: 26px 31px 30px;
    text-align: left;
  }

  .press-carousel__progress {
    right: 31px;
    left: 31px;
  }

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

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

  .bio-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .footer-mark {
    display: block;
    justify-self: center;
  }

  .footer-quote {
    padding-right: 0;
  }

  .footer-contact {
    text-align: right;
  }

  .record-feature,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .record-feature:nth-of-type(even) .record-feature__copy {
    order: 0;
  }

  .recordings-intro {
    min-height: 0;
    margin-top: 64px;
  }

  .recordings-intro::after {
    display: none;
  }

  .recordings-intro__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    width: min(calc(100% - 44px), 760px);
    padding: 86px 0;
    text-align: center;
  }

  .recordings-intro__title::after {
    display: none;
  }

  .recordings-intro__copy {
    margin: 0;
    padding: 32px 0 0;
  }

  .recordings-intro__copy::before {
    top: 0;
    right: auto;
    bottom: auto;
    left: 50%;
    width: 74px;
    height: 2px;
    transform: translateX(-50%);
    background: var(--accent);
  }

  .year-section {
    padding: 94px 0;
  }

  .recordings-year-header {
    margin-bottom: 64px;
  }

  .record-feature {
    gap: 34px;
    margin-bottom: 92px;
    padding: 40px 0;
  }

  .record-feature__copy p {
    max-width: 62ch;
  }

  .video-group {
    margin-bottom: 100px;
  }

  .repertoire-list {
    columns: 1;
  }

  .repertoire-intro {
    display: block;
    min-height: 0;
    padding-top: 76px;
    padding-bottom: 82px;
    text-align: center;
  }

  .repertoire-intro__kicker {
    transform: none;
  }

  .repertoire-intro::after {
    background: rgba(247, 246, 240, 0.64);
  }

  .repertoire-intro__roles {
    inset: -4% -18%;
  }

  .repertoire-intro__roles-backdrop {
    opacity: 0.16;
  }

  .repertoire-intro__roles-subjects {
    opacity: 0.23;
  }

  .repertoire-intro__copy {
    max-width: 56ch;
    margin: 30px auto 0;
    padding: 28px 0 0;
    transform: none;
  }

  .repertoire-intro__copy::before {
    top: 0;
    right: auto;
    bottom: auto;
    left: 50%;
    width: 74px;
    height: 2px;
    transform: translateX(-50%);
  }

  .repertoire-genre {
    margin-bottom: 92px;
  }

  .banner-page {
    --banner-height: 477px;
    --banner-transition-height: 16px;
  }

  main.banner-page {
    padding-top: var(--banner-transition-height);
  }

  .repertoire-intro,
  .calendar-intro,
  .recordings-intro {
    display: flex;
    align-items: center;
    height: var(--banner-height);
    min-height: var(--banner-height);
    margin-top: 0;
    padding: 0;
    text-align: center;
  }

  .banner-layout,
  .recordings-intro__inner {
    grid-template-columns: 1fr;
    align-content: start;
    align-items: start;
    gap: 36px;
    width: min(calc(100% - 44px), 760px);
    height: 100%;
    padding: 56px 0 46px;
    text-align: center;
  }

  .banner-kicker,
  .repertoire-intro__kicker,
  .calendar-intro__kicker,
  .recordings-intro__kicker {
    margin-bottom: 22px;
  }

  .banner-title h1,
  .repertoire-intro h1,
  .calendar-intro h1,
  .recordings-intro h1 {
    font-size: clamp(4rem, 14vw, 6rem);
    line-height: 0.84;
  }

  .banner-title::after,
  .recordings-intro__title::after {
    display: none;
  }

  .banner-aside,
  .repertoire-intro__copy,
  .calendar-period,
  .recordings-intro__copy {
    align-self: start;
    justify-self: center;
    max-width: 620px;
    margin: 0;
    padding: 27px 0 0;
    text-align: center;
  }

  .banner-aside::before,
  .repertoire-intro__copy::before,
  .calendar-period::before,
  .recordings-intro__copy::before {
    top: 0;
    right: auto;
    bottom: auto;
    left: 50%;
    width: 74px;
    height: 2px;
    transform: translateX(-50%);
    background: var(--accent);
  }

  .repertoire-intro::after {
    background:
      linear-gradient(90deg, rgba(8, 9, 9, 0.58), rgba(8, 9, 9, 0.31), rgba(9, 10, 11, 0.44)),
      linear-gradient(180deg, rgba(8, 9, 9, 0.18), transparent 26%, transparent 70%, rgba(8, 9, 9, 0.3));
  }

  .repertoire-intro__roles-backdrop {
    opacity: 0.4;
  }

  .repertoire-intro__roles-subjects {
    opacity: 0.56;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 28px 18px 0;
  }

  .site-title {
    margin-bottom: 28px;
    font-size: clamp(1.9rem, 8vw, 2.55rem);
    line-height: 1.08;
    text-wrap: balance;
  }

  .site-nav {
    justify-content: center;
  }

  .menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 58px;
    cursor: pointer;
    font-size: 0;
  }

  .menu-button::before {
    content: "☰";
    font-size: 1.45rem;
    line-height: 1;
  }

  .menu-button[aria-expanded="true"]::before {
    content: "×";
    font-size: 2rem;
  }

  .site-nav__list {
    position: absolute;
    z-index: 100;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    min-height: 0;
    padding: 12px 0;
    border-bottom: 1px solid var(--ink);
    background: var(--paper);
    box-shadow: 0 18px 30px rgba(18, 19, 19, 0.08);
  }

  .menu-open .site-nav__list {
    display: flex;
  }

  .site-nav__link {
    justify-content: center;
    min-height: 48px;
    font-family: var(--sans);
    font-size: 0.94rem;
  }

  .site-nav__link::after {
    bottom: 4px;
  }

  .main-shell,
  .narrow-shell,
  .article-shell,
  .repertoire-main {
    width: min(calc(100% - 32px), var(--wide));
    padding-top: 64px;
  }

  .home-hero {
    margin-top: 36px;
  }

  .home-hero__inner {
    width: min(calc(100% - 34px), 1360px);
    gap: 44px;
    padding: 0 0 78px;
  }

  .home-hero__title {
    font-size: clamp(3.45rem, 15.5vw, 4.4rem);
  }

  .home-hero__image {
    width: calc(100% + 34px);
    margin-left: -17px;
    border-radius: 0;
  }

  .home-hero__eyebrow {
    margin-bottom: 26px;
    font-size: 0.61rem;
    letter-spacing: 0.2em;
  }

  .home-hero__copy {
    padding: 0;
  }

  .home-hero__copy > .eyebrow {
    margin-bottom: 10px;
  }

  .press-carousel {
    width: calc(100% + 10px);
    margin-left: -5px;
    padding: 23px 24px 28px;
  }

  .press-carousel__progress {
    right: 24px;
    left: 24px;
  }

  .press-quote {
    font-size: 1.08rem;
    line-height: 1.46;
  }

  .press-carousel__slide--short .press-quote {
    font-size: 1.13rem;
    line-height: 1.44;
  }

  .hero-actions {
    margin-top: 38px;
  }

  .photo-grid {
    margin-bottom: 80px;
  }

  .philosophy__inner {
    padding: 0 0 88px;
  }

  .bio-card {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 98px;
  }

  .bio-card__image {
    max-height: 500px;
  }

  .resume-link {
    margin-bottom: 68px;
  }

  .short-bio {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-bottom: 100px;
    padding: 42px 30px 46px;
  }

  .short-bio__heading h2::after {
    width: 52px;
    margin-top: 24px;
  }

  .short-bio__stamp {
    --stamp-wax-edge: -8px;
    position: relative;
    bottom: auto;
    left: auto;
    grid-column: 1;
    justify-self: center;
    width: 70px;
    height: 70px;
    margin: 8px 0 0;
  }

  .short-bio__heading {
    align-self: start;
  }

  .post-card,
  .record-feature {
    grid-template-columns: 1fr;
  }

  .record-feature:nth-of-type(even) .record-feature__copy {
    order: 0;
  }

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

  .recordings-intro {
    margin-top: 36px;
  }

  .recordings-intro__inner {
    gap: 40px;
    width: calc(100% - 32px);
    padding: 68px 0 72px;
  }

  .recordings-intro__kicker {
    margin-bottom: 22px;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }

  .recordings-intro h1 {
    font-size: clamp(4.1rem, 19vw, 5.4rem);
  }

  .recordings-intro__title::after {
    width: 86px;
    margin-top: 28px;
  }

  .recordings-intro__copy p {
    font-size: clamp(1.95rem, 10vw, 2.55rem);
  }

  .recordings-intro__copy span {
    font-size: 0.62rem;
    letter-spacing: 0.11em;
  }

  .recordings-sheet {
    padding: 0;
  }

  .year-section {
    padding: 76px 0;
  }

  .recordings-year-header {
    grid-template-columns: auto 1fr;
    gap: 18px 22px;
    margin-bottom: 52px;
  }

  .recordings-year-header p {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .recordings-year-header > span {
    margin-bottom: 9px;
  }

  .year-heading {
    font-size: clamp(4.1rem, 22vw, 5.4rem);
  }

  .video-group h3,
  .record-feature__copy h3 {
    font-size: clamp(1.95rem, 10vw, 2.5rem);
  }

  .video-group h3 {
    margin-bottom: 26px;
    padding-bottom: 19px;
  }

  .video-frame {
    padding: 4px;
    box-shadow: 0 14px 30px rgba(18, 19, 19, 0.1);
  }

  .video-grid .video-frame::before {
    top: 11px;
    left: 11px;
  }

  .record-feature {
    gap: 28px;
    margin-bottom: 76px;
    padding: 34px 0;
  }

  .record-feature__copy::before {
    margin-bottom: 14px;
  }

  .record-feature__copy h3 {
    margin-bottom: 18px;
  }

  .record-feature__copy p {
    line-height: 1.68;
  }

  .video-group {
    margin-bottom: 82px;
  }

  .repertoire-intro {
    padding: 60px 24px 72px;
  }

  .repertoire-intro__roles {
    inset: -3% -34%;
  }

  .repertoire-intro__roles-backdrop {
    opacity: 0.14;
  }

  .repertoire-intro__roles-subjects {
    opacity: 0.19;
  }

  .repertoire-intro h1 {
    font-size: clamp(3.2rem, 17vw, 4.2rem);
  }

  .repertoire-index {
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
    margin-bottom: 72px;
    overflow-x: auto;
    border-radius: 16px;
    scrollbar-width: none;
  }

  .repertoire-index::-webkit-scrollbar {
    display: none;
  }

  .repertoire-index a {
    flex: 0 0 auto;
  }

  .repertoire-genre__header {
    grid-template-columns: auto 1fr;
    gap: 14px;
    margin-bottom: 26px;
  }

  .repertoire-genre__header p {
    grid-column: 2;
  }

  .composer-block {
    padding: 24px 22px;
    border-radius: 15px;
  }

  .calendar-main {
    width: min(calc(100% - 32px), 1160px);
    padding: 64px 0 80px;
  }

  .calendar-intro {
    display: block;
    min-height: 0;
    padding: 64px 24px 78px;
    text-align: center;
  }

  .calendar-intro h1 {
    font-size: clamp(3.75rem, 16vw, 5.2rem);
    line-height: 0.86;
  }

  .calendar-period {
    width: max-content;
    max-width: 100%;
    margin: 34px auto 0;
    padding: 25px 0 0;
    font-size: clamp(2rem, 10vw, 3rem);
    transform: none;
  }

  .calendar-period::before {
    top: 0;
    right: auto;
    bottom: auto;
    left: 50%;
    width: 74px;
    height: 2px;
    transform: translateX(-50%);
  }

  .calendar-intro + .calendar-section {
    margin-top: 76px;
  }

  .calendar-section {
    margin-bottom: 92px;
  }

  .calendar-section__header {
    grid-template-columns: auto 1fr;
    gap: 14px;
    margin-bottom: 28px;
  }

  .calendar-section__header p {
    grid-column: 2;
  }

  .calendar-event {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 20px;
    padding: 26px 20px;
    border-radius: 15px;
  }

  .calendar-event--featured {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 24px;
    padding: 34px 24px;
  }

  .calendar-event__date {
    padding-right: 18px;
  }

  .calendar-event__day {
    font-size: 2.4rem;
  }

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

  .footer-contact {
    text-align: right;
  }

  .footer-social {
    justify-content: flex-end;
  }

  .banner-page {
    --banner-height: 462px;
    --banner-transition-height: 12px;
  }

  .calendar-add__menu,
  .calendar-add::after {
    right: 0;
    left: auto;
    width: min(270px, calc(100vw - 48px));
  }

  main.banner-page {
    padding-top: var(--banner-transition-height);
  }

  .repertoire-intro,
  .calendar-intro,
  .recordings-intro {
    display: flex;
    height: var(--banner-height);
    min-height: var(--banner-height);
    margin-top: 0;
    padding: 0;
  }

  .banner-layout,
  .recordings-intro__inner {
    gap: 30px;
    width: calc(100% - 32px);
    padding: 48px 0 40px;
  }

  .banner-kicker,
  .repertoire-intro__kicker,
  .calendar-intro__kicker,
  .recordings-intro__kicker {
    margin-bottom: 20px;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }

  .banner-title h1,
  .repertoire-intro h1,
  .calendar-intro h1,
  .recordings-intro h1 {
    font-size: clamp(3.55rem, 16vw, 4.55rem);
    line-height: 0.84;
  }

  .banner-title::after,
  .recordings-intro__title::after {
    width: 84px;
    margin-top: 22px;
  }

  .banner-aside,
  .repertoire-intro__copy,
  .calendar-period,
  .recordings-intro__copy {
    max-width: 100%;
    margin: 0;
    padding: 24px 0 0;
  }

  .repertoire-intro::after {
    background:
      linear-gradient(90deg, rgba(8, 9, 9, 0.58), rgba(8, 9, 9, 0.31), rgba(9, 10, 11, 0.44)),
      linear-gradient(180deg, rgba(8, 9, 9, 0.18), transparent 24%, transparent 68%, rgba(8, 9, 9, 0.3));
  }

  .repertoire-intro__roles-backdrop {
    opacity: 0.4;
  }

  .repertoire-intro__roles-subjects {
    opacity: 0.56;
  }
}

@media (max-width: 420px) {
  .calendar-event__actions {
    gap: 7px;
  }

  .calendar-event__action {
    padding: 8px 10px;
    font-size: 0.68rem;
  }

  .calendar-event,
  .calendar-event--featured {
    grid-template-columns: 1fr;
  }

  .calendar-event__date {
    padding: 0 0 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .calendar-event__month,
  .calendar-event__day,
  .calendar-event__year {
    display: inline;
    margin-right: 5px;
    font-family: var(--sans);
    font-size: 0.8rem;
    line-height: inherit;
  }

  .calendar-event--featured .calendar-event__day {
    font-size: 0.8rem;
  }
}

@media (max-width: 340px) {
  .calendar-add {
    flex-basis: 100%;
  }

  .calendar-add__menu,
  .calendar-add::after {
    right: auto;
    left: 0;
    width: calc(100vw - 72px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .press-carousel__progress {
    display: none;
  }

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