/*
DESIGN LOCK:
Этот сайт выполнен в light editorial / cubist / cultural art-direction aesthetic.
Нельзя менять утверждённую дизайн-систему без прямой команды.
Нельзя упрощать композицию.
Нельзя делать “примерно похоже”.
Нужно сохранять типографику, пропорции, воздух и арт-дирекшн.
Любые изменения должны быть точечными.
*/

/* DESIGN LOCK */

:root {
  --bg: #f4efe7;
  --paper: #f8f4ed;
  --bg-soft: #f1ece4;
  --bg-panel: rgba(255, 250, 244, 0.8);
  --bg-panel-strong: #fbf7f0;
  --text: #151515;
  --muted: #6d675f;
  --blue: #1647d9;
  --red: #b8523f;
  --sand: #d2b07a;
  --sand-soft: rgba(210, 173, 114, 0.34);
  --line: rgba(22, 22, 22, 0.12);
  --line-soft: rgba(22, 22, 22, 0.08);
  --line-strong: rgba(22, 22, 22, 0.18);
  --white-line: rgba(255, 255, 255, 0.75);
  --font-serif: "Bodoni Moda", "Playfair Display", "Cormorant Garamond", serif;
  --font-sans: "Inter", "Manrope", Arial, sans-serif;
  --container: 1320px;
  --radius-pill: 999px;
  --radius-panel: 2rem;
  --radius-card: 1.7rem;
  --page-gutter: clamp(1rem, 2.4vw, 2rem);
  --section-gap: clamp(4rem, 7vw, 7rem);
  --shadow-soft: 0 24px 60px rgba(24, 25, 31, 0.07);
  --shadow-blue: 0 30px 70px rgba(31, 71, 255, 0.16);
}

/* Base */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  min-width: 320px;
  overflow-x: hidden;
  overflow-y: auto;
  background:
    radial-gradient(circle at 12% 12%, rgba(31, 71, 255, 0.08), transparent 24%),
    radial-gradient(circle at 84% 12%, rgba(200, 90, 61, 0.08), transparent 20%),
    linear-gradient(180deg, #faf6ef 0%, var(--bg) 34%, #f3eee6 100%);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

main {
  position: relative;
  z-index: 1;
  overflow: visible;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p,
figure,
blockquote,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

::selection {
  background: rgba(31, 71, 255, 0.18);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid rgba(31, 71, 255, 0.58);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-accent {
  position: fixed;
  left: 2.5vw;
  bottom: 7vh;
  width: clamp(8rem, 15vw, 14rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 71, 255, 0.18) 0%, rgba(31, 71, 255, 0) 68%);
  filter: blur(4px);
  opacity: 0.7;
  pointer-events: none;
  z-index: -1;
}

.js .is-observed {
  opacity: 1;
  transform: none;
  transition: opacity 720ms ease, transform 720ms ease;
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: inherit;
  isolation: isolate;
  background:
    linear-gradient(140deg, rgba(31, 71, 255, 0.11) 0%, rgba(31, 71, 255, 0.02) 46%, rgba(200, 90, 61, 0.08) 100%),
    var(--bg-panel-strong);
}

.media-frame__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
  transition: opacity 360ms ease, transform 460ms ease;
}

.media-frame__fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.4rem;
  padding: clamp(1.1rem, 2vw, 1.45rem);
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.08) 0%, rgba(255, 250, 244, 0.82) 100%),
    radial-gradient(circle at 18% 20%, rgba(31, 71, 255, 0.14) 0%, transparent 22%),
    radial-gradient(circle at 86% 80%, rgba(200, 90, 61, 0.15) 0%, transparent 18%);
  display: none;
  opacity: 0;
  pointer-events: none;
}

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

.media-frame__fallback::before {
  top: 12%;
  left: 10%;
  width: 25%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(31, 71, 255, 0.14);
}

.media-frame__fallback::after {
  right: 10%;
  bottom: 16%;
  width: 18%;
  aspect-ratio: 1;
  border-radius: 30%;
  background: rgba(200, 90, 61, 0.16);
}

.media-frame__label,
.media-frame__hint {
  position: relative;
  z-index: 1;
  display: none;
}

.media-frame__label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}

.media-frame__hint {
  max-width: 18rem;
  color: var(--muted);
}

.media-frame[data-state="error"] .media-frame__image {
  opacity: 0;
}

.media-frame[data-state="error"] .media-frame__fallback {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.button-link,
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 220ms ease, color 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.button-link::after,
.section-link::after {
  content: "↗";
  font-size: 0.9em;
}

.section-link::after {
  content: "→";
}

.button-link {
  padding: 0.9rem 1.22rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.button-link--dark {
  background: var(--text);
  border-color: var(--text);
  color: #fbf7f0;
}

.button-link--soft {
  background: rgba(255, 255, 255, 0.22);
}

.button-link:hover,
.button-link:focus-visible,
.section-link:hover,
.section-link:focus-visible {
  transform: translateY(-2px);
}

/* Layout */

.container {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--container));
  margin: 0 auto;
}

.section {
  padding-block: var(--section-gap);
}

.panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.55rem, 2.4vw, 2.2rem);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-panel);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.84) 0%, rgba(249, 244, 236, 0.78) 100%);
  box-shadow: var(--shadow-soft);
}

.section-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem 1.2rem;
  align-items: start;
  margin-bottom: 1.75rem;
}

.section-heading--compact {
  margin-bottom: 1.35rem;
}

.section-heading--light {
  color: #f6f7fb;
}

.section-heading__group {
  display: grid;
  gap: 0.45rem;
}

.section-number {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-number::after {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: var(--line);
}

.section-heading--light .section-number {
  color: rgba(246, 247, 251, 0.78);
}

.section-heading--light .section-number::after {
  background: rgba(246, 247, 251, 0.28);
}

.section-heading h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 3.5vw, 4rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.section-heading__note {
  max-width: 31rem;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: clamp(1rem, 1.8vw, 1.55rem);
}

.site-header__inner {
  position: relative;
  min-height: clamp(4.9rem, 6vw, 5.35rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.35rem;
  padding: 0 clamp(1.65rem, 2.6vw, 2.1rem);
  border: 1px solid rgba(22, 22, 22, 0.08);
  border-radius: var(--radius-pill);
  background: rgba(248, 244, 236, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 24px rgba(18, 19, 24, 0.04);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.08rem;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  line-height: 1;
}

.brand__letter {
  display: inline-block;
}

.brand__letter--blue {
  color: var(--blue);
}

.brand__letter--red {
  margin-left: -0.18rem;
  color: var(--red);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.85rem, 1.45vw, 1.45rem);
  font-size: clamp(0.92rem, 0.95vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav a,
.lang-switch {
  color: rgba(22, 22, 22, 0.8);
}

.js .lang-text[data-lang="en"] {
  display: none;
}

.js .lang-text.is-hidden {
  display: none !important;
}

.js .lang-text.is-visible {
  display: revert !important;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(22, 22, 22, 0.8);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(248, 242, 230, 0.72);
  border: 1px solid rgba(31, 37, 40, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  z-index: 3;
}

.lang-switcher button,
.language-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #1f2528;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
  text-decoration: none;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lang-switcher button:hover,
.lang-switcher button:focus-visible,
.language-button:hover,
.language-button:focus-visible {
  transform: translateY(-1px);
}

.lang-switcher button.active,
.lang-switcher button.is-active,
.language-button.is-active {
  background: #123d7a;
  color: #fffaf0;
  box-shadow: 0 8px 22px rgba(18, 61, 122, 0.22);
}

.lang-switch .is-active {
  color: var(--text);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.6rem;
  padding: 0.48rem 0.8rem;
  border: 1px solid rgba(22, 22, 22, 0.12);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
}

.nav-toggle__line {
  display: block;
  width: 1.05rem;
  height: 1px;
  background: currentColor;
}

.nav-toggle__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero */

.hero-asset {
  position: relative;
  z-index: 1;
  padding: 0 0 clamp(3.9rem, 6vw, 5rem);
}

.hero-asset__frame {
  position: relative;
  width: min(calc(100% - (var(--page-gutter) * 2)), 1360px);
  min-height: max(100vh, 760px);
  margin: 16px auto 0;
  overflow: hidden;
  background: var(--paper);
}

.hero-asset__visual,
.hero-asset__image,
.hero-asset__veil {
  position: absolute;
  inset: 0;
}

.hero-asset__visual {
  z-index: 0;
}

.hero-asset__image,
.hero-asset__veil {
  width: 100%;
  height: 100%;
}

.hero-asset__image {
  z-index: 0;
  object-fit: cover;
  object-position: center center;
}

.hero-asset__veil {
  z-index: 1;
  background: linear-gradient(90deg, rgba(248, 242, 230, 0.92) 0%, rgba(248, 242, 230, 0.65) 28%, rgba(248, 242, 230, 0.12) 52%, rgba(248, 242, 230, 0) 72%);
}

.hero-asset__content {
  position: absolute;
  left: clamp(4.5rem, 6.6vw, 6rem);
  top: 50%;
  z-index: 2;
  width: min(44vw, 620px);
  max-width: 620px;
  transform: translateY(-45%);
}

.hero-asset__eyebrow {
  margin-bottom: 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.hero-asset__title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 0.97;
  letter-spacing: -0.045em;
  color: var(--text);
}

.hero-asset__subtitle {
  max-width: 32rem;
  margin-top: 1.5rem;
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: rgba(21, 21, 21, 0.9);
}

.hero-asset__text {
  max-width: 35rem;
  margin-top: 1.2rem;
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  line-height: 1.68;
  color: rgba(21, 21, 21, 0.76);
}

.hero-asset__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-asset__quote {
  position: absolute;
  right: clamp(2rem, 4vw, 3.2rem);
  bottom: clamp(1.8rem, 4vw, 3rem);
  z-index: 2;
  max-width: 360px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 1.25rem;
  background: rgba(248, 244, 237, 0.42);
  backdrop-filter: blur(12px);
}

.hero-asset__quote p {
  font-size: 0.96rem;
  line-height: 1.5;
  color: rgba(21, 21, 21, 0.74);
}

/* Hero Shapes */

/* Home Bio */

.home-bio {
  position: relative;
  z-index: 2;
  min-height: 360px;
  padding-top: clamp(6.5rem, 9vw, 8.5rem);
  padding-bottom: clamp(6.2rem, 9vw, 8.2rem);
}

.home-bio__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 4vw, 4.8rem);
  align-items: start;
  padding: clamp(2.2rem, 4vw, 3.3rem) 0;
}

.home-bio__meta,
.home-bio__content {
  position: relative;
  z-index: 1;
}

.home-bio__heading {
  display: inline-grid;
  gap: 0.75rem;
  justify-items: start;
}

.home-bio__number {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.home-bio__kicker {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}

.home-bio__eyebrow {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(21, 21, 21, 0.72);
}

.home-bio__title {
  max-width: 9.5ch;
  margin-top: 1.6rem;
  font-family: var(--font-serif);
  font-size: clamp(4rem, 6.2vw, 5.75rem);
  line-height: 0.97;
  letter-spacing: -0.046em;
  color: var(--text);
}

.home-bio__title .home-bio__accent {
  color: var(--blue);
}

.home-bio__content {
  width: min(100%, 620px);
  padding-top: clamp(0.8rem, 1.7vw, 1.5rem);
}

.home-bio__text {
  display: grid;
  gap: 1.25rem;
  color: rgba(21, 21, 21, 0.78);
  font-size: clamp(1.08rem, 1.45vw, 1.3rem);
  line-height: 1.66;
}

.home-bio__link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
}

.home-bio__link span:last-child {
  color: var(--blue);
  font-size: 1.1rem;
  transition: transform 220ms ease, color 220ms ease;
}

.home-bio__link:hover span:last-child,
.home-bio__link:focus-visible span:last-child {
  transform: translateX(0.22rem);
  color: var(--red);
}

.home-bio__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.home-bio__fact {
  display: grid;
  gap: 0.4rem;
  min-height: 8.4rem;
  padding: 1rem 1rem 1.05rem;
  border-top: 1px solid var(--line-strong);
  border-radius: 1.2rem;
  background: rgba(255, 251, 245, 0.72);
  box-shadow: var(--shadow-soft);
}

.home-bio__fact-title {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.home-bio__fact p {
  max-width: 10rem;
  font-family: var(--font-serif);
  font-size: 1.18rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.home-bio__shape {
  position: absolute;
  pointer-events: none;
}

.home-bio__shape--sand {
  right: 3%;
  top: 12%;
  width: clamp(11rem, 18vw, 16rem);
  height: clamp(8rem, 14vw, 12rem);
  background: rgba(210, 176, 122, 0.16);
  clip-path: polygon(14% 0, 100% 12%, 74% 100%, 0 74%);
}

.home-bio__shape--blue {
  left: 35%;
  top: 56%;
  width: 1.1rem;
  height: 5.25rem;
  background: var(--blue);
}

.home-bio__shape--dot {
  left: 37.5%;
  top: 54%;
  width: 5rem;
  height: 5rem;
  background-image: radial-gradient(circle, rgba(21, 21, 21, 0.32) 1.2px, transparent 1.2px);
  background-size: 11px 11px;
  opacity: 0.72;
}

.home-bio__shape--line {
  right: 18%;
  top: 26%;
  width: clamp(10rem, 18vw, 14rem);
  height: 1px;
  background: rgba(21, 21, 21, 0.18);
  transform: rotate(-28deg);
  transform-origin: right center;
}

/* Event Feature */

.event-feature {
  position: relative;
  z-index: 2;
  min-height: 360px;
}

.event-feature__inner {
  position: relative;
  overflow: hidden;
  padding: clamp(1.8rem, 3vw, 2.6rem);
}

.event-feature__content,
.event-feature__poster,
.event-feature__actions {
  position: relative;
  z-index: 1;
}

.event-feature__content {
  grid-area: content;
}

.hero-event-slider {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.25rem;
}

.hero-event-slider__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.hero-event-slider__heading {
  display: inline-grid;
  gap: 0.7rem;
  justify-items: start;
}

.hero-event-slider__label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--blue);
}

.hero-event-slider__controls {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-event-slider__arrow {
  display: inline-grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.78);
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease, color 220ms ease;
}

.hero-event-slider__arrow:hover,
.hero-event-slider__arrow:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(22, 22, 22, 0.22);
  background: rgba(255, 251, 245, 0.96);
}

.hero-event-slider__viewport {
  overflow: hidden;
  transition: height 350ms ease;
}

.hero-event-slider__track {
  display: flex;
  transition: transform 350ms ease;
  will-change: transform;
}

.hero-event-slide {
  min-width: 100%;
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(18rem, 0.82fr);
  grid-template-areas:
    "content poster"
    "actions poster";
  gap: clamp(1.25rem, 2.8vw, 2.25rem) clamp(1.5rem, 3.2vw, 3rem);
  align-items: start;
  align-content: start;
}

.hero-event-slide[aria-hidden="true"] {
  pointer-events: none;
}

.hero-event-slider__dots {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-event-slider__dots button {
  width: 0.45rem;
  height: 0.45rem;
  border: 0;
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.24);
  cursor: pointer;
  transition: width 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.hero-event-slider__dots button:hover,
.hero-event-slider__dots button:focus-visible {
  transform: translateY(-1px);
}

.hero-event-slider__dots button.is-active {
  width: 1.4rem;
  background: var(--blue);
}

.event-feature__poster {
  grid-area: poster;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  min-height: 520px;
  overflow: visible;
}

.event-feature__poster--placeholder {
  align-items: stretch;
}

.hero-event-slide__poster-card {
  display: grid;
  align-content: center;
  gap: 1rem;
  width: min(100%, 25rem);
  min-height: min(100%, 31rem);
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.96) 0%, rgba(244, 237, 226, 0.92) 100%),
    rgba(255, 251, 245, 0.92);
  border: 1px solid rgba(21, 21, 21, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-event-slide__poster-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.hero-event-slide__poster-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.hero-event-slide__poster-text {
  margin: 0;
  color: rgba(21, 21, 21, 0.72);
  font-size: 0.98rem;
  line-height: 1.6;
}

.event-feature__actions {
  grid-area: actions;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-self: end;
}

.event-feature__header {
  display: inline-grid;
  gap: 0.7rem;
  justify-items: start;
}

.event-feature__number {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.event-feature__eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--blue);
}

.event-feature__title {
  max-width: 10ch;
  margin-top: 1.35rem;
  font-family: var(--font-serif);
  font-size: clamp(3.3rem, 5.4vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.event-feature__title span {
  color: var(--text);
}

.event-feature__description {
  max-width: 38rem;
  margin-top: 1.35rem;
  color: rgba(21, 21, 21, 0.78);
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.65;
}

.event-feature__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  max-width: 40rem;
  margin-top: 1.55rem;
}

.event-feature__meta-item {
  display: grid;
  gap: 0.35rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.event-feature__meta-item:last-child {
  grid-column: 1 / -1;
}

.event-feature__meta-item span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.event-feature__meta-item strong {
  font-family: var(--font-serif);
  font-size: clamp(1.14rem, 1.8vw, 1.48rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.event-feature__note {
  max-width: 34rem;
  margin-top: 1.3rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.event-feature__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.25rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.66);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 220ms ease, border-color 220ms ease, color 220ms ease, background-color 220ms ease;
}

.event-feature__action::after {
  content: "→";
  color: var(--blue);
  font-size: 1rem;
}

.event-feature__action--primary {
  background: rgba(22, 22, 22, 0.94);
  border-color: rgba(22, 22, 22, 0.94);
  color: #f7f4ed;
}

.event-feature__action--primary::after {
  color: #f7f4ed;
}

.event-feature__action--secondary {
  background: rgba(255, 251, 245, 0.78);
}

.event-feature__action:hover,
.event-feature__action:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(22, 22, 22, 0.2);
}

.event-feature__action--primary:hover,
.event-feature__action--primary:focus-visible {
  background: var(--blue);
  border-color: var(--blue);
}

.event-feature__poster-img {
  display: block;
  width: min(100%, 430px);
  height: auto;
  max-height: 620px;
  object-fit: contain;
  opacity: 1;
  visibility: visible;
  filter: none;
  transform: none;
  z-index: 2;
  border-radius: 1.15rem;
  box-shadow: var(--shadow-soft);
}

.event-feature__poster-caption {
  margin-top: 0.9rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(21, 21, 21, 0.62);
}

.event-feature__shape {
  position: absolute;
  pointer-events: none;
}

.event-feature__shape--sand {
  right: 32%;
  top: 10%;
  width: clamp(8rem, 13vw, 11rem);
  height: clamp(6rem, 10vw, 8rem);
  background: rgba(210, 176, 122, 0.16);
  clip-path: polygon(10% 0, 100% 16%, 74% 100%, 0 68%);
}

.event-feature__shape--blue {
  left: 44%;
  bottom: 17%;
  width: 1rem;
  height: 5rem;
  background: var(--blue);
}

.event-feature__shape--dot {
  left: 46.5%;
  bottom: 15%;
  width: 4.4rem;
  height: 4.4rem;
  background-image: radial-gradient(circle, rgba(21, 21, 21, 0.28) 1.2px, transparent 1.2px);
  background-size: 10px 10px;
  opacity: 0.78;
}

/* Event Modal */

.event-modal {
  position: fixed;
  inset: 0;
  z-index: 65;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.event-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.event-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 22, 22, 0.2);
  backdrop-filter: blur(10px);
}

.event-modal__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(100%, 1100px);
  max-height: min(88vh, 860px);
  overflow: hidden;
  border: 1px solid rgba(22, 22, 22, 0.08);
  border-radius: calc(var(--radius-panel) + 0.2rem);
  background:
    radial-gradient(circle at 84% 16%, rgba(200, 90, 61, 0.08), transparent 18%),
    radial-gradient(circle at 12% 84%, rgba(31, 71, 255, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 251, 245, 0.98) 0%, rgba(247, 241, 232, 0.97) 100%);
  box-shadow: 0 26px 70px rgba(18, 19, 24, 0.14);
}

.event-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid rgba(22, 22, 22, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 220ms ease, background-color 220ms ease, color 220ms ease;
}

.event-modal__close:hover,
.event-modal__close:focus-visible {
  transform: rotate(6deg);
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue);
}

.event-modal__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: clamp(3.5rem, 5vw, 4rem) clamp(1.25rem, 3vw, 2.25rem) 2rem;
}

.event-modal__grid {
  display: grid;
  grid-template-columns: minmax(16rem, 0.76fr) minmax(0, 1.04fr);
  gap: clamp(1.1rem, 2.5vw, 2rem);
  align-items: start;
}

.event-modal__poster-frame {
  min-height: clamp(24rem, 40vw, 36rem);
  aspect-ratio: 0.74;
  border-radius: 1.7rem;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.98) 0%, rgba(245, 239, 231, 0.96) 100%);
}

.event-modal__poster {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
}

.event-modal__poster-img {
  display: block;
  width: min(100%, 430px);
  height: auto;
  max-height: 620px;
  object-fit: contain;
  opacity: 1;
  visibility: visible;
  filter: none;
  transform: none;
  border-radius: 1.15rem;
  box-shadow: var(--shadow-soft);
}

.event-modal__poster-caption {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(21, 21, 21, 0.6);
}

.event-modal__details {
  display: grid;
  gap: 1rem;
  padding-bottom: 1rem;
}

.event-modal__detail-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.event-modal__detail-group {
  display: grid;
  gap: 0.35rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.event-modal__label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}

.event-modal__detail-group p,
.event-modal__detail-group a {
  color: rgba(21, 21, 21, 0.78);
  font-size: 1rem;
  line-height: 1.62;
}

.event-modal__program {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem 1rem;
  color: rgba(21, 21, 21, 0.78);
  font-size: 1rem;
  line-height: 1.55;
}

/* Home Sections */

.section-link {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.performances,
.event-feature,
.repertoire,
.repertoire-home,
.achievements,
.photo-moments,
.contact-section {
  position: relative;
  z-index: 2;
  min-height: 360px;
}

.section-heading--light .section-heading__note {
  color: rgba(246, 247, 251, 0.76);
}

/* Videos */

.performances__header,
.repertoire-home__header,
.achievements__header,
.photo-moments__header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.performances__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.1rem, 2vw, 1.4rem);
  align-items: start;
}

.performance-feature::before {
  content: "";
  position: absolute;
  top: -2.8rem;
  right: -2.4rem;
  width: 7.2rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(200, 90, 61, 0.16);
}

.performances__stack {
  display: grid;
  gap: 1rem;
}

.performance-feature--secondary::before {
  display: none;
}

.performance-card {
  display: grid;
  gap: 1rem;
}

.performance-card--featured {
  position: relative;
  z-index: 1;
}

.performance-card--compact {
  grid-template-columns: minmax(8.5rem, 10.2rem) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.performance-frame {
  min-height: 10.8rem;
  border-radius: 1.35rem;
}

.performance-frame--featured {
  min-height: clamp(24rem, 40vw, 33rem);
  border-radius: 1.85rem;
}

.performance-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 19, 24, 0.04) 0%, rgba(18, 19, 24, 0.28) 100%);
  z-index: 1;
  pointer-events: none;
}

.performance-frame__image {
  object-fit: cover;
  object-position: 50% 20%;
  transform: scale(1.05);
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 28px;
  background: #111;
}

.video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 4.75rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 250, 244, 0.92);
  box-shadow: 0 12px 30px rgba(12, 20, 43, 0.18);
  transform: translate(-50%, -50%);
}

.play-button::before {
  content: "";
  position: absolute;
  left: 54%;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 0.65rem solid transparent;
  border-bottom: 0.65rem solid transparent;
  border-left: 1rem solid var(--blue);
  transform: translate(-50%, -50%);
}

.play-button--small {
  width: 3.6rem;
}

.play-button--small::before {
  border-top-width: 0.5rem;
  border-bottom-width: 0.5rem;
  border-left-width: 0.8rem;
}

.performance-card__body {
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.performance-card__body--video {
  gap: 0.72rem;
}

.performance-card__type {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.performance-card__body h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 1.95vw, 2rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.performance-card__body--video h3 {
  font-size: clamp(1.34rem, 1.72vw, 1.9rem);
}

.performance-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.15rem;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.performance-card__link::after {
  content: "→";
}

.performance-card__meta {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Repertoire */

.repertoire-home__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.8rem, 2.7vw, 2.6rem);
}

.repertoire-home__accent {
  position: absolute;
  pointer-events: none;
}

.repertoire-home__accent--bar {
  top: 0;
  right: 9%;
  width: 4.5rem;
  height: 100%;
  background: linear-gradient(180deg, rgba(31, 71, 255, 0.94) 0%, rgba(31, 71, 255, 0.74) 100%);
}

.repertoire-home__accent--disc {
  left: -2.2rem;
  bottom: -2.8rem;
  width: clamp(8rem, 13vw, 11rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(200, 90, 61, 0.78);
}

.repertoire-home__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 2rem;
}

.repertoire-home__entry {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.repertoire-home__entry h3 {
  margin-bottom: 0.7rem;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 1.65vw, 1.8rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.repertoire-home__entry ul {
  list-style: none;
  display: grid;
  gap: 0.56rem;
  color: rgba(21, 21, 21, 0.74);
  font-size: 0.98rem;
  line-height: 1.54;
  min-width: 0;
  text-wrap: pretty;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: manual;
}

.repertoire-open {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.55rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 220ms ease, color 220ms ease;
}

.repertoire-open::after {
  content: "→";
  color: var(--blue);
}

.repertoire-open:hover,
.repertoire-open:focus-visible {
  transform: translateY(-2px);
  color: var(--blue);
}

.repertoire-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.repertoire-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.repertoire-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 22, 22, 0.18);
  backdrop-filter: blur(10px);
}

.repertoire-modal__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(100%, 1040px);
  max-height: min(86vh, 820px);
  overflow: hidden;
  border: 1px solid rgba(22, 22, 22, 0.08);
  border-radius: calc(var(--radius-panel) + 0.2rem);
  background:
    radial-gradient(circle at 88% 16%, rgba(200, 90, 61, 0.08), transparent 18%),
    radial-gradient(circle at 18% 86%, rgba(31, 71, 255, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 251, 245, 0.97) 0%, rgba(247, 241, 232, 0.96) 100%);
  box-shadow: 0 26px 70px rgba(18, 19, 24, 0.14);
}

.repertoire-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid rgba(22, 22, 22, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 220ms ease, background-color 220ms ease, color 220ms ease;
}

.repertoire-modal__close:hover,
.repertoire-modal__close:focus-visible {
  transform: rotate(6deg);
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue);
}

.repertoire-modal__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: clamp(4rem, 6vw, 4.6rem) clamp(1.4rem, 3vw, 2.4rem) 3rem;
}

.repertoire-modal__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2rem;
  padding-bottom: 3.5rem;
}

.repertoire-modal__composer {
  min-width: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.repertoire-modal__composer h3 {
  margin-bottom: 0.7rem;
  font-family: var(--font-serif);
  font-size: clamp(1.36rem, 1.7vw, 1.76rem);
  line-height: 1.06;
  letter-spacing: -0.034em;
}

.repertoire-modal__works {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  color: rgba(21, 21, 21, 0.76);
  font-size: 0.98rem;
  line-height: 1.56;
  min-width: 0;
  text-wrap: pretty;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: manual;
}

/* Achievements */

.achievement-scholarship {
  position: relative;
  overflow: visible;
  display: grid;
  gap: 0.8rem;
  padding: 1.35rem 1.4rem;
  margin-bottom: 1.2rem;
  border-radius: 1.6rem;
  background: linear-gradient(140deg, rgba(255, 251, 245, 0.92) 0%, rgba(245, 239, 231, 0.94) 100%);
  box-shadow: var(--shadow-soft);
}

.achievement-scholarship::before {
  content: "";
  position: absolute;
  right: -1.6rem;
  top: -1.6rem;
  width: 7rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(31, 71, 255, 0.1);
}

.achievement-scholarship::after {
  content: "";
  position: absolute;
  left: 1.4rem;
  bottom: 0;
  width: 3.6rem;
  height: 2px;
  background: var(--red);
}

.achievement-scholarship__label {
  position: relative;
  z-index: 1;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}

.achievement-scholarship p {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  font-family: var(--font-serif);
  font-size: clamp(1.28rem, 2vw, 1.8rem);
  line-height: 1.08;
  letter-spacing: -0.034em;
}

.new-names-feature {
  min-height: 12.5rem;
  padding-right: clamp(11.5rem, 18vw, 14rem);
}

.new-names-feature__content {
  position: relative;
  z-index: 1;
  max-width: 44rem;
}

.new-names-feature__certificate {
  position: absolute;
  top: -0.75rem;
  right: 0.75rem;
  z-index: 3;
  width: clamp(11.25rem, 14vw, 12.75rem);
  pointer-events: none;
  transform: rotate(4deg);
  transform-origin: center top;
}

.new-names-feature__certificate img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
  filter: brightness(1.05) saturate(1.02) drop-shadow(0 14px 26px rgba(0, 0, 0, 0.14));
  transition: transform 240ms ease, filter 240ms ease;
}

.new-names-feature:hover .new-names-feature__certificate img {
  transform: translateY(-2px) rotate(-0.3deg);
  filter: brightness(1.05) saturate(1.02) drop-shadow(0 16px 28px rgba(0, 0, 0, 0.15));
}

.achievement-scholarship--home.new-names-feature {
  padding-right: clamp(11.5rem, 19vw, 14.5rem);
}

.achievement-scholarship--page.new-names-feature {
  padding-right: clamp(12rem, 20vw, 15rem);
}

.achievement-scholarship--page .new-names-feature__certificate {
  top: -1rem;
  right: 0.4rem;
  width: clamp(11.5rem, 14.5vw, 13.25rem);
}

.achievements__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.achievement-card {
  position: relative;
  display: grid;
  gap: 0.8rem;
  padding: 1.45rem 1.35rem 1.55rem;
  border-top: 1px solid var(--line-strong);
  border-radius: 1.55rem;
  background: rgba(255, 251, 245, 0.72);
  box-shadow: var(--shadow-soft);
}

.achievement-card::before {
  content: "";
  position: absolute;
  top: 1.1rem;
  right: 1.15rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: rgba(31, 71, 255, 0.18);
}

.achievement-card__year {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.achievement-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 1.85vw, 1.8rem);
  line-height: 1.05;
  letter-spacing: -0.034em;
}

.achievement-card__meta,
.achievement-card__result {
  font-size: 0.92rem;
  line-height: 1.52;
}

.achievement-card__meta {
  color: rgba(21, 21, 21, 0.64);
}

.achievement-card__result {
  color: var(--blue);
  font-weight: 700;
}

.achievement-card p {
  color: var(--muted);
  line-height: 1.58;
}

/* Photo Moments */

.photo-moments__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.photo-moments__item,
.photo-card {
  position: relative;
  aspect-ratio: 3 / 4;
  min-height: 0;
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, rgba(248, 244, 237, 0.98) 0%, rgba(242, 236, 228, 0.94) 100%);
  box-shadow: var(--shadow-soft);
}

.photo-card__image {
  object-fit: contain;
  object-position: center center;
  filter: saturate(0.96) contrast(1.02);
  transform: none;
}

/* Contacts */

.contact-section {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.contact-section__shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(19rem, 0.82fr);
  gap: clamp(1rem, 2vw, 1.3rem);
  padding: clamp(1.6rem, 2.4vw, 2.2rem);
  border-radius: calc(var(--radius-panel) + 0.4rem);
  background: linear-gradient(155deg, #1f47ff 0%, #1837c4 56%, #10207d 100%);
  box-shadow: var(--shadow-blue);
}

.contact-section__shell::before,
.contact-section__shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.contact-section__shell::before {
  top: -18%;
  right: -6%;
  width: 15rem;
  aspect-ratio: 1;
}

.contact-section__shell::after {
  left: 8%;
  bottom: -18%;
  width: 12rem;
  aspect-ratio: 1;
}

.contact-section__intro,
.contact-links {
  position: relative;
  z-index: 1;
}

.contact-section__caption {
  max-width: 32rem;
  margin-top: 1.55rem;
  color: rgba(246, 247, 251, 0.78);
  font-size: 1rem;
  line-height: 1.65;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  max-width: 38rem;
  justify-self: end;
  width: 100%;
}

.contact-link {
  display: grid;
  gap: 0.75rem;
  min-height: 12rem;
  padding: 1.2rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.45rem;
  background: rgba(248, 244, 237, 0.14);
  backdrop-filter: blur(12px);
  color: #f6f7fb;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(248, 244, 237, 0.2);
  border-color: rgba(255, 255, 255, 0.28);
}

.contact-link__label {
  color: rgba(246, 247, 251, 0.72);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-link__title {
  max-width: 16rem;
  font-family: var(--font-serif);
  font-size: clamp(1.32rem, 1.9vw, 1.68rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.contact-link__arrow {
  align-self: end;
  color: rgba(246, 247, 251, 0.88);
  font-size: 1.2rem;
}

.site-footer {
  padding: 0 0 2.2rem;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: rgba(21, 21, 21, 0.62);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__inner a {
  color: var(--blue);
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: min(420px, calc(100% - 48px));
  padding: 22px 24px;
  background: rgba(248, 244, 237, 0.92);
  color: var(--text, #151515);
  border: 1px solid var(--line, rgba(21, 21, 21, 0.14));
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 9999;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner__title {
  font-family: var(--font-serif, serif);
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.cookie-banner__text {
  font-family: var(--font-sans, sans-serif);
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted, #6d675f);
  margin-bottom: 18px;
}

.cookie-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: none;
  border-radius: 999px;
  background: var(--blue, #1647d9);
  color: #fff;
  font-family: var(--font-sans, sans-serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 220ms ease, background-color 220ms ease;
}

.cookie-banner__button:hover,
.cookie-banner__button:focus-visible {
  transform: translateY(-1px);
  background: #123dc0;
}

/* Biography Page */

.bio-page {
  background:
    radial-gradient(circle at 14% 10%, rgba(31, 71, 255, 0.06), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(200, 90, 61, 0.07), transparent 22%),
    linear-gradient(180deg, #faf6ef 0%, var(--bg) 34%, #f4eee6 100%);
}

.bio-page .site-header {
  position: sticky;
}

.bio-main {
  position: relative;
  z-index: 1;
  padding-bottom: 2rem;
}

.bio-hero {
  padding: 0 0 clamp(4.8rem, 7vw, 6.4rem);
}

.bio-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(18rem, 0.82fr);
  gap: clamp(1.5rem, 3vw, 2.4rem);
  align-items: center;
  padding-top: clamp(2rem, 4vw, 3.2rem);
}

.bio-hero__content {
  position: relative;
}

.bio-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}

.bio-hero__eyebrow::after {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: var(--line);
}

.bio-hero__title {
  max-width: 10ch;
  font-family: var(--font-serif);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.bio-hero__subtitle {
  max-width: 32rem;
  margin-top: 1.4rem;
  color: rgba(21, 21, 21, 0.8);
  font-size: clamp(1.18rem, 2vw, 1.6rem);
  line-height: 1.35;
}

.bio-hero__media {
  position: relative;
  min-height: clamp(24rem, 42vw, 37rem);
  border-radius: calc(var(--radius-panel) + 0.2rem);
  overflow: hidden;
  background: linear-gradient(155deg, rgba(31, 71, 255, 0.08) 0%, rgba(210, 176, 122, 0.18) 54%, rgba(248, 244, 237, 0.4) 100%);
  box-shadow: var(--shadow-soft);
}

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

.bio-hero__media::before {
  top: -12%;
  right: -10%;
  width: 11rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(200, 90, 61, 0.22);
}

.bio-hero__media::after {
  left: -6%;
  bottom: -8%;
  width: 10rem;
  aspect-ratio: 1;
  background: rgba(31, 71, 255, 0.18);
  clip-path: polygon(0 24%, 100% 0, 84% 100%, 0 78%);
}

.bio-hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
}

.bio-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(1.3rem, 2.4vw, 2.2rem);
  align-items: start;
}

.bio-grid__aside {
  position: sticky;
  top: 7rem;
}

.bio-grid__content {
  max-width: 52rem;
}

.bio-grid__content p + p {
  margin-top: 1rem;
}

.bio-text {
  color: rgba(21, 21, 21, 0.8);
  font-size: clamp(1.04rem, 1.25vw, 1.14rem);
  line-height: 1.72;
}

.bio-note {
  display: grid;
  gap: 0.85rem;
  padding: 1.15rem 1.2rem;
  border-top: 1px solid var(--line-strong);
  border-radius: 1.35rem;
  background: rgba(255, 251, 245, 0.7);
  box-shadow: var(--shadow-soft);
}

.bio-note__label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.bio-note p {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.bio-section__title {
  max-width: 12ch;
}

.bio-awards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.bio-award {
  display: grid;
  gap: 0.65rem;
  min-height: 10.8rem;
  padding: 1.2rem 1.15rem;
  border: 1px solid var(--line-soft);
  border-radius: 1.4rem;
  background: rgba(255, 251, 245, 0.74);
  box-shadow: var(--shadow-soft);
}

.bio-award__mark {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}

.bio-award h3 {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.bio-award p {
  color: var(--muted);
  line-height: 1.55;
}

.bio-project {
  position: relative;
  overflow: hidden;
}

.bio-project::before {
  content: "";
  position: absolute;
  right: -2rem;
  top: -2rem;
  width: 7rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(31, 71, 255, 0.1);
}

.bio-project__label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.8rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.bio-project__label::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: rgba(200, 90, 61, 0.24);
}

.bio-project h2 {
  max-width: 24rem;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.4vw, 2.35rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.bio-project p {
  max-width: 38rem;
  margin-top: 0.95rem;
  color: rgba(21, 21, 21, 0.78);
  line-height: 1.68;
}

.bio-masterclasses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.bio-masterclass {
  padding: 1rem 1.05rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 251, 245, 0.56);
  border-radius: 1.15rem;
  font-family: var(--font-serif);
  font-size: 1.12rem;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.bio-closing {
  position: relative;
  overflow: hidden;
  padding: clamp(1.9rem, 3vw, 2.6rem);
}

.bio-closing::before {
  content: "";
  position: absolute;
  left: -2.5rem;
  bottom: -3rem;
  width: 9rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(210, 176, 122, 0.28);
}

.bio-closing__text {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.bio-closing__action {
  position: relative;
  z-index: 1;
  margin-top: 1.5rem;
}

/* Achievements Page */

.achievements-page {
  background:
    radial-gradient(circle at 14% 10%, rgba(31, 71, 255, 0.06), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(200, 90, 61, 0.07), transparent 22%),
    linear-gradient(180deg, #faf6ef 0%, var(--bg) 34%, #f4eee6 100%);
}

.achievements-page .site-header {
  position: sticky;
}

.achievements-page__main {
  position: relative;
  z-index: 1;
  padding-bottom: 2rem;
}

.achievements-hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0 0 clamp(2.8rem, 5vw, 4.2rem);
}

.achievements-hero__frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: clamp(50rem, 52vw, 56rem);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(248, 244, 237, 0.14) 0%, rgba(248, 244, 237, 0.05) 28%, rgba(248, 244, 237, 0.26) 100%),
    var(--bg-panel-strong);
}

.achievements-hero__image {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.achievements-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(248, 242, 230, 0.9) 0%, rgba(248, 242, 230, 0.62) 28%, rgba(248, 242, 230, 0.16) 54%, rgba(248, 242, 230, 0) 76%),
    linear-gradient(180deg, rgba(20, 20, 20, 0) 0%, rgba(20, 20, 20, 0.18) 100%);
}

.achievements-hero__content {
  position: absolute;
  left: min(7vw, 5.8rem);
  bottom: clamp(2rem, 5vw, 3.8rem);
  z-index: 2;
  width: min(100% - 2rem, 42rem);
}

.achievements-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.achievements-hero__eyebrow::after {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: rgba(21, 21, 21, 0.18);
}

.achievements-hero__title {
  max-width: 8ch;
  font-family: var(--font-serif);
  font-size: clamp(4rem, 8vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.achievements-hero__subtitle {
  max-width: 32rem;
  margin-top: 1rem;
  color: rgba(21, 21, 21, 0.8);
  font-size: clamp(1.16rem, 1.9vw, 1.45rem);
  line-height: 1.38;
}

.achievements-intro {
  padding: 0 0 clamp(4.5rem, 7vw, 6.2rem);
}

.achievements-intro__shell {
  position: relative;
  padding-top: clamp(0.4rem, 1.4vw, 0.9rem);
}

.achievements-intro__grid {
  max-width: 46rem;
}

.achievements-intro__content {
  max-width: 46rem;
}

.achievements-intro__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.achievements-intro__back::before {
  content: "←";
}

.achievements-intro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.achievements-intro__eyebrow::after {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: var(--line);
}

.achievements-intro__title {
  max-width: 8ch;
  font-family: var(--font-serif);
  font-size: clamp(3.6rem, 6vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: -0.048em;
}

.achievements-intro__text {
  max-width: 44rem;
}

.achievements-intro__text {
  margin-top: 1rem;
  color: rgba(21, 21, 21, 0.76);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.68;
}

.achievements-scholarship {
  padding-top: 0;
  padding-bottom: clamp(2.2rem, 4vw, 3rem);
}

.achievement-scholarship--page {
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.achievements-timeline {
  display: grid;
  gap: clamp(2.6rem, 5vw, 4.2rem);
}

.achievement-year {
  display: grid;
  grid-template-columns: minmax(7rem, 0.18fr) minmax(0, 0.82fr);
  gap: clamp(1rem, 2vw, 1.6rem);
  align-items: start;
}

.achievement-year__label {
  position: relative;
  padding-top: 0.2rem;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.achievement-year__label::after {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: calc(100% + 0.75rem);
  width: 1px;
  height: calc(100% + 2rem);
  background: var(--line);
}

.achievement-year:last-child .achievement-year__label::after {
  display: none;
}

.achievement-list {
  display: grid;
  gap: 1rem;
}

.achievement-item {
  display: grid;
  gap: 0.7rem;
  padding: 1.25rem 1.2rem;
  border-top: 1px solid var(--line-strong);
  border-radius: 1.4rem;
  background: rgba(255, 251, 245, 0.72);
  box-shadow: var(--shadow-soft);
}

.achievement-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  color: rgba(21, 21, 21, 0.62);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.achievement-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  line-height: 1.06;
  letter-spacing: -0.036em;
  overflow-wrap: anywhere;
}

.achievement-item__title {
  max-width: 42rem;
}

.achievement-result {
  color: var(--blue);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.5;
}

.achievement-item__city {
  color: rgba(21, 21, 21, 0.72);
}

.achievement-description {
  max-width: 46rem;
  color: var(--muted);
  line-height: 1.64;
}

.masterclasses-section {
  padding-top: clamp(2.4rem, 5vw, 4rem);
}

.masterclasses-section__header {
  max-width: 46rem;
}

.masterclasses-section__title {
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.masterclasses-section__text {
  margin-top: 1rem;
  color: rgba(21, 21, 21, 0.76);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.66;
}

.masterclasses-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.masterclass-card {
  display: grid;
  gap: 0.7rem;
  padding: 1.15rem 1.1rem 1.2rem;
  border-top: 1px solid var(--line-strong);
  border-radius: 1.3rem;
  background: rgba(255, 251, 245, 0.72);
  box-shadow: var(--shadow-soft);
}

.masterclass-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.34rem, 1.8vw, 1.7rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.masterclass-card p {
  color: var(--muted);
  line-height: 1.6;
}

.orchestra-event {
  padding-top: clamp(2.8rem, 5.4vw, 4.6rem);
}

.orchestra-event__inner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 4vw, 3rem);
  padding: clamp(2.2rem, 4vw, 3.5rem) clamp(1.6rem, 4vw, 4rem);
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.orchestra-event__inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: clamp(1.2rem, 3vw, 2rem);
  width: clamp(3.2rem, 5vw, 4.4rem);
  height: 100%;
  background: linear-gradient(180deg, rgba(31, 71, 255, 0.92) 0%, rgba(31, 71, 255, 0.72) 100%);
  opacity: 0.9;
}

.orchestra-event__lead,
.orchestra-event__content {
  position: relative;
  z-index: 1;
}

.orchestra-event__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.orchestra-event__title {
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4.75rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 10ch;
}

.orchestra-event__text {
  max-width: 38rem;
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.62;
  color: var(--text);
}

.orchestra-event__meta {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.8rem;
}

.orchestra-event__meta-item {
  display: grid;
  gap: 0.32rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.orchestra-event__meta-item strong {
  font-family: var(--font-serif);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.orchestra-event__meta-item span {
  color: var(--muted);
  line-height: 1.58;
}

.orchestra-event__year {
  position: absolute;
  left: clamp(1.6rem, 4vw, 3rem);
  bottom: clamp(1.2rem, 2vw, 1.8rem);
  color: rgba(21, 21, 21, 0.08);
  font-family: var(--font-serif);
  font-size: clamp(4rem, 11vw, 7.8rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  pointer-events: none;
}

.bio-text--lead {
  margin-top: 1.4rem;
}

.bio-text--spaced {
  margin-bottom: 1.4rem;
}

/* Responsive */

@media (max-width: 1180px) {
  .site-nav {
    gap: 0.95rem;
    font-size: 0.88rem;
  }

  .hero-asset__frame {
    min-height: max(92vh, 740px);
  }

  .hero-asset__content {
    left: clamp(3.4rem, 5.4vw, 4.8rem);
    width: min(46vw, 580px);
  }

  .hero-asset__subtitle {
    max-width: 29rem;
  }

  .hero-asset__quote {
    right: clamp(1.8rem, 3vw, 2.4rem);
    bottom: clamp(1.6rem, 3vw, 2.3rem);
  }

  .home-bio__title {
    font-size: clamp(3.6rem, 5.8vw, 5rem);
  }

  .home-bio__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .performances__layout {
    grid-template-columns: minmax(0, 1.06fr) minmax(17rem, 0.94fr);
  }

  .repertoire-home__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .achievement-year {
    grid-template-columns: 1fr;
  }

  .achievement-year__label::after {
    display: none;
  }

  .masterclasses-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .orchestra-event__inner {
    grid-template-columns: 1fr;
  }

  .orchestra-event__title {
    max-width: 12ch;
  }

  .orchestra-event__year {
    right: 1.5rem;
    left: auto;
    bottom: 1rem;
    font-size: clamp(3.4rem, 11vw, 5.5rem);
  }

  .photo-moments__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .home-bio__inner,
  .performances__layout,
  .contact-section__shell {
    grid-template-columns: 1fr;
  }

  .hero-event-slide {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "poster"
      "actions";
  }

  .event-feature__poster {
    width: min(100%, 430px);
  }

  .event-feature__meta {
    max-width: 44rem;
  }

  .event-modal__grid {
    grid-template-columns: 1fr;
  }

  .event-modal__poster {
    width: min(100%, 420px);
  }

  .new-names-feature {
    padding-right: clamp(9.5rem, 20vw, 11.5rem);
  }

  .new-names-feature__certificate {
    top: -0.7rem;
    right: 0.55rem;
    width: clamp(9.4rem, 16vw, 11rem);
    transform: rotate(4deg);
  }

  .achievement-scholarship--page .new-names-feature__certificate {
    top: -0.8rem;
    right: 0.3rem;
  }

  .home-bio__inner {
    gap: 1.8rem;
  }

  .home-bio__title {
    max-width: 12ch;
  }

  .home-bio__content {
    width: min(100%, 700px);
    padding-top: 0;
  }

  .home-bio__shape--blue,
  .home-bio__shape--dot {
    left: auto;
    right: 8%;
  }

  .home-bio__shape--blue {
    top: 24%;
  }

  .home-bio__shape--dot {
    top: 20%;
  }

  .home-bio__facts,
  .bio-hero__inner,
  .bio-grid {
    grid-template-columns: 1fr;
  }

  .bio-grid__aside {
    position: static;
  }

  .bio-awards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bio-masterclasses {
    grid-template-columns: 1fr;
  }

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

  .performance-card--compact {
    grid-template-columns: 1fr;
  }

  .performance-frame {
    min-height: 12rem;
  }

  .performance-card--compact .performance-card__body h3 {
    font-size: 1.32rem;
  }

  .repertoire-home__header,
  .achievements__header,
  .photo-moments__header {
    align-items: start;
  }

  .contact-links {
    max-width: 38rem;
    justify-self: start;
  }

  .bio-hero__media {
    min-height: 28rem;
  }
}

@media (max-width: 960px) {
  .hero-asset__frame {
    min-height: 760px;
  }

  .hero-asset__image {
    object-position: 58% center;
  }

  .hero-asset__veil {
    background: linear-gradient(90deg, rgba(248, 242, 230, 0.95) 0%, rgba(248, 242, 230, 0.8) 34%, rgba(248, 242, 230, 0.24) 58%, rgba(248, 242, 230, 0) 78%);
  }

  .hero-asset__content {
    left: 2.5rem;
    width: min(52vw, 520px);
    transform: translateY(-43%);
  }

  .hero-asset__title {
    font-size: clamp(3.9rem, 6.8vw, 5.5rem);
  }

  .hero-asset__subtitle {
    font-size: clamp(1.25rem, 2vw, 1.55rem);
  }

  .hero-asset__text {
    max-width: 31rem;
    font-size: 1rem;
  }

  .hero-asset__quote {
    max-width: 300px;
    padding: 0.8rem 0.95rem;
  }

  .hero-asset__quote p {
    font-size: 0.9rem;
  }

  .section {
    padding-block: clamp(3.5rem, 8vw, 5rem);
  }

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

  .repertoire-modal__list {
    grid-template-columns: 1fr;
  }

  .repertoire-home__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-links {
    max-width: 100%;
  }

  .bio-awards {
    grid-template-columns: 1fr;
  }

  .achievement-meta {
    gap: 0.55rem 0.8rem;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding-top: 0.8rem;
  }

  .site-header__inner {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.82rem 1rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    display: grid;
    justify-items: start;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(22, 22, 22, 0.08);
    border-radius: 1.45rem;
    background: rgba(248, 244, 236, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 40px rgba(19, 21, 26, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .site-header__inner.is-nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-asset {
    padding-bottom: 3.4rem;
  }

  .hero-asset__frame {
    min-height: 720px;
  }

  .hero-asset__image {
    object-position: 60% center;
  }

  .hero-asset__veil {
    background: linear-gradient(90deg, rgba(248, 242, 230, 0.96) 0%, rgba(248, 242, 230, 0.84) 40%, rgba(248, 242, 230, 0.34) 64%, rgba(248, 242, 230, 0.02) 82%);
  }

  .hero-asset__content {
    left: 2rem;
    width: min(56vw, 460px);
  }

  .hero-asset__title {
    font-size: clamp(3.45rem, 8vw, 4.9rem);
  }

  .hero-asset__subtitle {
    max-width: 26rem;
  }

  .hero-asset__actions {
    gap: 0.7rem;
  }

  .hero-asset__quote {
    right: 1rem;
    bottom: 1.4rem;
    max-width: 250px;
  }

  .achievements-hero__frame {
    min-height: clamp(38rem, 60vw, 46rem);
  }

  .achievements-hero__content {
    left: 2rem;
    right: 2rem;
    width: auto;
  }

  .event-feature__title {
    font-size: clamp(3rem, 8vw, 4.35rem);
  }

  .event-feature__description {
    font-size: 1rem;
  }

  .event-feature__actions {
    gap: 0.75rem;
  }

  .home-bio {
    padding-top: 5.4rem;
    padding-bottom: 5.2rem;
  }

  .home-bio__title {
    font-size: clamp(3rem, 8vw, 4.2rem);
  }

  .home-bio__text {
    font-size: 1.08rem;
  }

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

  .performances__header,
  .repertoire-home__header,
  .achievements__header,
  .photo-moments__header {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    justify-items: start;
  }

  .performances__layout,
  .achievements__grid {
    gap: 0.9rem;
  }

  .achievement-scholarship p {
    font-size: 1.42rem;
  }

  .achievements-intro__title {
    font-size: clamp(3.2rem, 7vw, 4.6rem);
  }

  .new-names-feature {
    padding-right: clamp(10rem, 31vw, 14rem);
  }

  .new-names-feature__certificate {
    top: -1.5rem;
    right: -0.1rem;
    width: clamp(9.5rem, 18vw, 11rem);
  }

  .repertoire-home__grid {
    gap: 1rem 1.2rem;
  }

  .bio-hero__title {
    font-size: clamp(3.4rem, 9vw, 4.8rem);
  }

  .bio-hero__subtitle {
    font-size: 1.18rem;
  }

  .achievements-hero__title {
    font-size: clamp(3.4rem, 9vw, 4.8rem);
  }

  .achievements-hero__subtitle {
    font-size: 1.12rem;
  }
}

@media (max-width: 640px) {
  .lang-switch {
    display: inline-flex;
    justify-self: end;
    font-size: 0.84rem;
    gap: 0.35rem;
  }

  .site-header__inner {
    grid-template-columns: auto auto auto;
  }

  .hero-asset {
    padding-bottom: 2.8rem;
  }

  .hero-asset__frame {
    display: flex;
    flex-direction: column;
    width: min(calc(100% - (var(--page-gutter) * 2)), 100%);
    min-height: 0;
    margin-top: 12px;
    overflow: clip;
  }

  .hero-asset__visual {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    min-height: 26.5rem;
  }

  .hero-asset__image,
  .hero-asset__veil {
    position: absolute;
    inset: 0;
  }

  .hero-asset__image {
    object-position: 60% top;
    object-fit: cover;
  }

  .hero-asset__veil {
    background:
      linear-gradient(180deg, rgba(248, 242, 230, 0.08) 0%, rgba(248, 242, 230, 0.04) 42%, rgba(248, 242, 230, 0.3) 76%, rgba(248, 242, 230, 0.54) 100%),
      linear-gradient(90deg, rgba(248, 242, 230, 0.04) 0%, rgba(248, 242, 230, 0) 100%);
  }

  .hero-asset__content {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    order: 1;
    width: 100%;
    max-width: none;
    padding: 1.15rem 1rem 1.4rem;
    background: linear-gradient(180deg, rgba(248, 244, 237, 0.98) 0%, rgba(248, 244, 237, 0.92) 100%);
    transform: none;
  }

  .hero-asset__title {
    font-size: clamp(3rem, 12vw, 4.15rem);
    line-height: 0.96;
  }

  .hero-asset__subtitle {
    max-width: none;
    margin-top: 1.1rem;
    font-size: clamp(1.15rem, 5vw, 1.34rem);
  }

  .hero-asset__text {
    max-width: none;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .hero-asset__actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 1.5rem;
  }

  .hero-asset__actions .button-link {
    justify-content: center;
  }

  .hero-asset__quote {
    display: none;
  }

  .achievements-hero {
    padding-bottom: 2.2rem;
  }

  .achievements-hero__frame {
    min-height: 32rem;
    max-height: 36rem;
  }

  .achievements-hero__image {
    object-position: center top;
  }

  .achievements-hero__veil {
    background:
      linear-gradient(180deg, rgba(248, 242, 230, 0.1) 0%, rgba(248, 242, 230, 0.06) 32%, rgba(248, 242, 230, 0.76) 66%, rgba(248, 242, 230, 0.96) 100%),
      linear-gradient(90deg, rgba(248, 242, 230, 0.1) 0%, rgba(248, 242, 230, 0) 100%);
  }

  .achievements-hero__content {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    width: auto;
  }

  .achievements-hero__title {
    font-size: clamp(3rem, 12vw, 4rem);
  }

  .achievements-hero__subtitle {
    font-size: 1rem;
  }

  .event-feature__inner {
    padding: 1.1rem;
  }

  .hero-event-slider {
    gap: 1rem;
  }

  .hero-event-slider__top {
    align-items: start;
  }

  .hero-event-slide {
    gap: 1rem;
  }

  .event-feature__title {
    max-width: 11ch;
    font-size: clamp(2.55rem, 11vw, 3.8rem);
  }

  .event-feature__description,
  .event-feature__note {
    font-size: 0.98rem;
  }

  .event-feature__meta {
    grid-template-columns: 1fr;
  }

  .event-feature__meta-item:last-child {
    grid-column: auto;
  }

  .event-feature__poster {
    width: 100%;
    justify-content: center;
    min-height: 0;
  }

  .event-feature__poster-img {
    width: min(100%, 360px);
    max-height: 540px;
  }

  .hero-event-slide__poster-card {
    width: 100%;
    min-height: 18rem;
    padding: 1.25rem;
  }

  .hero-event-slider__arrow {
    width: 2.75rem;
    height: 2.75rem;
  }

  .hero-event-slider__dots button.is-active {
    width: 1.25rem;
  }

  .event-feature__actions {
    flex-direction: column;
  }

  .event-feature__action {
    width: 100%;
  }

  .video-embed {
    border-radius: 18px;
  }

  .event-feature__shape--blue,
  .event-feature__shape--dot {
    display: none;
  }

  .event-feature__shape--sand {
    right: -3%;
    top: 4%;
    width: 8.5rem;
    height: 6.2rem;
  }

  .new-names-feature {
    padding-right: 1rem;
    padding-bottom: 0.8rem;
  }

  .new-names-feature__certificate {
    position: relative;
    top: auto;
    right: auto;
    justify-self: center;
    width: min(40vw, 8.2rem);
    margin-top: 1rem;
    transform: rotate(3deg);
  }

  .achievement-scholarship--home.new-names-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 6rem;
    gap: 0.9rem;
    align-items: center;
    min-height: auto;
    padding: 1.5rem 1.25rem;
    overflow: hidden;
  }

  .achievement-scholarship--home .new-names-feature__content {
    min-width: 0;
    max-width: none;
    overflow-wrap: break-word;
  }

  .achievement-scholarship--home .new-names-feature__certificate {
    position: relative;
    top: auto;
    right: auto;
    width: 5.75rem;
    margin: 0;
    justify-self: end;
    align-self: center;
    transform: rotate(4deg);
  }

  .achievement-scholarship--home .new-names-feature__certificate img {
    width: 100%;
  }

  .home-bio {
    padding-top: 4.2rem;
    padding-bottom: 4.2rem;
  }

  .home-bio__inner {
    gap: 1.4rem;
    padding: 0.6rem 0 0;
  }

  .home-bio__heading {
    gap: 0.55rem;
  }

  .home-bio__title {
    max-width: 11ch;
    margin-top: 1.15rem;
    font-size: clamp(2.6rem, 11vw, 3.7rem);
    line-height: 0.98;
  }

  .home-bio__text {
    gap: 1rem;
    font-size: 1rem;
    line-height: 1.62;
  }

  .home-bio__link {
    gap: 0.6rem;
    margin-top: 1.6rem;
    font-size: 0.82rem;
  }

  .home-bio__shape--sand {
    right: 0;
    top: 2%;
    width: 9rem;
    height: 7rem;
  }

  .home-bio__shape--blue,
  .home-bio__shape--dot,
  .home-bio__shape--line {
    display: none;
  }

  .home-bio__fact {
    min-height: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .section-number::after {
    width: 2rem;
  }

  .repertoire-home__grid,
  .achievements__grid,
  .photo-moments__grid {
    grid-template-columns: 1fr;
  }

  .repertoire-modal {
    padding: 0.75rem;
  }

  .event-modal {
    padding: 0.75rem;
  }

  .repertoire-modal__panel {
    max-height: 88vh;
  }

  .event-modal__panel {
    max-height: 88vh;
  }

  .repertoire-modal__body {
    padding: 3.7rem 1rem 3rem;
  }

  .event-modal__body {
    padding: 3.4rem 1rem 1.5rem;
  }

  .event-modal__detail-row,
  .event-modal__program {
    grid-template-columns: 1fr;
  }

  .event-modal__poster-img {
    width: min(100%, 340px);
    max-height: 520px;
  }

  .event-modal__close {
    top: 0.75rem;
    right: 0.75rem;
    width: 2.6rem;
    height: 2.6rem;
  }

  .repertoire-modal__close {
    top: 0.75rem;
    right: 0.75rem;
    width: 2.6rem;
    height: 2.6rem;
  }

  .performances__layout {
    gap: 0.9rem;
  }

  .performance-card--compact {
    grid-template-columns: 1fr;
  }

  .performance-frame--featured {
    min-height: 20rem;
  }

  .performance-frame {
    min-height: 11.5rem;
  }

  .performance-card__body h3 {
    font-size: 1.45rem;
  }

  .photo-moments__item,
  .photo-card {
    aspect-ratio: 3 / 4;
  }

  .contact-section__shell {
    padding: 1rem;
  }

  .contact-section__intro {
    display: grid;
    justify-items: center;
    text-align: center;
  }

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

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    padding: 20px;
    border-radius: 20px;
  }

  .cookie-banner__title {
    font-size: 22px;
  }

  .cookie-banner__button {
    width: 100%;
  }

  .bio-main {
    padding-bottom: 1.2rem;
  }

  .bio-hero {
    padding-bottom: 3.8rem;
  }

  .bio-hero__media {
    min-height: 22rem;
  }

  .bio-hero__title {
    font-size: clamp(3rem, 12vw, 4rem);
  }

  .bio-hero__subtitle {
    font-size: 1.06rem;
  }

  .bio-text {
    font-size: 0.98rem;
    line-height: 1.66;
  }

  .bio-closing__text {
    font-size: 1.5rem;
  }

  .achievement-scholarship {
    padding: 1rem;
  }

  .achievement-scholarship p {
    font-size: 1.2rem;
  }

  .achievement-item {
    padding: 1rem;
  }

  .masterclasses-list {
    grid-template-columns: 1fr;
  }

  .orchestra-event {
    padding-top: 3rem;
  }

  .orchestra-event__inner {
    gap: 1.75rem;
    padding: 2rem 1.25rem;
    border-radius: 1.5rem;
  }

  .orchestra-event__inner::before {
    width: 2.8rem;
    right: 1rem;
  }

  .orchestra-event__title {
    font-size: clamp(2.1rem, 10vw, 3rem);
    max-width: 100%;
  }

  .orchestra-event__text {
    font-size: 1rem;
  }

  .orchestra-event__year {
    right: 1rem;
    bottom: 0.9rem;
    font-size: clamp(2.9rem, 18vw, 4.2rem);
  }

  .achievement-title {
    font-size: 1.32rem;
  }

  .masterclass-card {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .site-header__inner {
    gap: 0.6rem;
  }

  .lang-switch {
    font-size: 0.76rem;
  }

  .hero-asset__content {
    padding: 1rem 0.85rem 1.25rem;
  }

  .hero-asset__eyebrow {
    margin-bottom: 0.85rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .hero-asset__title {
    font-size: clamp(2.8rem, 14vw, 3.6rem);
  }

  .hero-asset__subtitle {
    font-size: 1.08rem;
  }

  .hero-asset__text {
    font-size: 0.94rem;
  }

  .hero-asset__visual {
    min-height: 23rem;
  }

  .home-bio__number,
  .home-bio__kicker,
  .home-bio__eyebrow {
    font-size: 0.74rem;
  }

  .home-bio__title {
    font-size: clamp(2.35rem, 12.5vw, 3.05rem);
  }

  .achievements-hero__eyebrow {
    font-size: 0.74rem;
  }

  .event-feature__number,
  .event-feature__eyebrow {
    font-size: 0.74rem;
  }

  .home-bio__text {
    font-size: 0.98rem;
  }

  .repertoire-modal__works {
    font-size: 0.94rem;
  }

  .home-bio__fact p,
  .bio-note p,
  .bio-award h3,
  .bio-masterclass {
    font-size: 1.02rem;
  }

  .achievement-title {
    font-size: 1.2rem;
  }

  .achievement-result,
  .achievement-description {
    font-size: 0.94rem;
  }

  .masterclasses-section__title {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .masterclass-card h3 {
    font-size: 1.18rem;
  }

  .performance-card__body h3 {
    font-size: 1.28rem;
  }

  .repertoire-home__entry h3,
  .achievement-card h3 {
    font-size: 1.3rem;
  }

  .bio-closing__text {
    font-size: 1.34rem;
  }

  .achievement-scholarship--home.new-names-feature {
    grid-template-columns: minmax(0, 1fr) 4.9rem;
    gap: 0.65rem;
    padding: 1.35rem 1rem;
  }

  .achievement-scholarship--home .new-names-feature__certificate {
    width: 4.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .is-observed,
  .is-visible {
    opacity: 1;
    transform: none;
  }
}

/* 404 Page */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--blue);
  color: var(--paper-strong);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #123d7a;
}

.button--secondary {
  border-color: rgba(21, 21, 21, 0.14);
  background: rgba(255, 250, 242, 0.84);
  color: var(--text);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: rgba(21, 21, 21, 0.24);
}

.not-found-page {
  min-height: 100vh;
  background: var(--page-bg, #f6efe4);
}

.not-found {
  padding: 120px 0 96px;
}

.not-found__inner {
  max-width: var(--container, 1320px);
  margin: 0 auto;
  padding: 72px 64px;
  border-radius: 36px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  background: rgba(255, 250, 242, 0.78);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.not-found__mark {
  font-family: var(--font-serif, serif);
  font-size: clamp(96px, 16vw, 220px);
  line-height: 0.85;
  color: var(--blue, #2454a6);
  letter-spacing: -0.08em;
}

.not-found__eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  font-weight: 700;
  color: var(--red, #b8523f);
}

.not-found__title {
  margin: 0;
  font-family: var(--font-serif, serif);
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--text, #151515);
}

.not-found__text {
  max-width: 620px;
  margin: 28px 0 0;
  font-size: 20px;
  line-height: 1.55;
  color: rgba(21, 21, 21, 0.78);
}

.not-found__actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 760px) {
  .not-found {
    padding: 84px 0 64px;
  }

  .not-found__inner {
    grid-template-columns: 1fr;
    padding: 42px 24px;
    gap: 28px;
    border-radius: 28px;
  }

  .not-found__mark {
    font-size: clamp(88px, 28vw, 132px);
  }

  .not-found__text {
    font-size: 17px;
  }

  .not-found__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .not-found__actions .button {
    width: 100%;
    text-align: center;
  }
}
