@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

iframe {
  border: none;
  display: block;
}

body {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.25vw, 19px);
  color: #f2ede8;
  background-color: #080808;
  transition: background-color 0.32s ease;
}

body.page-biography {
  background-color: #080808;
  --sticky-bg: rgba(8, 8, 8, 0.92);
}

body.page-audio {
  background-color: #0f0008;
  --sticky-bg: rgba(15, 0, 8, 0.92);
}

body.page-video {
  background-color: #060410;
  --sticky-bg: rgba(6, 4, 16, 0.92);
}

body.page-repertory {
  background-color: #0d0600;
  --sticky-bg: rgba(13, 6, 0, 0.92);
}

body.page-contacts {
  background-color: #0d0204;
  --sticky-bg: rgba(13, 2, 4, 0.92);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 110%, rgba(201, 169, 110, 0.07) 0%, transparent 70%);
}

.site-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
  padding-top: 56px;
  padding-bottom: 88px;
}

.rule {
  width: 100%;
  height: 1px;
  background: rgba(201, 169, 110, 0.22);
  border: none;
}

.section-heading {
  font-family: "Cinzel", "Trajan Pro", "Times New Roman", serif;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 32px;
}

.site-main {
  animation: fadeIn 0.6s ease both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.site-header {
  padding-top: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.22);
}

.header-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.header-identity {
  display: flex;
  flex-direction: column;
}

.artist-name {
  font-family: "Jost", "Futura", "Century Gothic", Trebuchet MS, sans-serif;
  font-size: clamp(30px, 5.5vw, 60px);
  font-weight: 300;
  letter-spacing: 0.18em;
  color: #f2ede8;
  line-height: 1.05;
  text-transform: uppercase;
}

.artist-subtitle {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(13px, 1.4vw, 18px);
  font-weight: 300;
  letter-spacing: 0.25em;
  color: #c9a96e;
  margin-top: 4px;
  text-transform: lowercase;
}

.lang-switch {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 4px;
}
.lang-switch a {
  font-family: "Cinzel", "Trajan Pro", "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(242, 237, 232, 0.62);
  transition: color 0.18s ease;
  padding: 4px 0;
  position: relative;
}
.lang-switch a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #c9a96e;
  transform: scaleX(0);
  transition: transform 0.18s ease;
}
.lang-switch a:hover {
  color: #f2ede8;
}
.lang-switch a:hover::after {
  transform: scaleX(1);
}
.lang-switch a.lang-active {
  color: #e8d4a4;
}
.lang-switch a.lang-active::after {
  transform: scaleX(1);
}
.lang-switch span {
  color: rgba(201, 169, 110, 0.22);
  font-size: 10px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  flex-wrap: wrap;
}

.nav-links a {
  font-family: "Cinzel", "Trajan Pro", "Times New Roman", serif;
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242, 237, 232, 0.62);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.18s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #c9a96e;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.18s ease;
}
.nav-links a:hover {
  color: #f2ede8;
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-links a.active {
  color: #e8d4a4;
}
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(242, 237, 232, 0.62);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

@media (max-width: 600px) {
  .nav-toggle {
    display: flex;
  }
  .site-nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    padding: 16px 0;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-size: 13px;
  }
}
.sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--sticky-bg, rgba(8, 8, 8, 0.92));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.22);
  transform: translateY(-100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.sticky-bar.is-visible {
  transform: translateY(0);
}

.sticky-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px clamp(24px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.sticky-name {
  font-family: "Jost", "Futura", "Century Gothic", Trebuchet MS, sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f2ede8;
  white-space: nowrap;
}

.sticky-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 36px);
}
.sticky-nav a {
  font-family: "Cinzel", "Trajan Pro", "Times New Roman", serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242, 237, 232, 0.62);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.18s ease;
  white-space: nowrap;
}
.sticky-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #c9a96e;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.18s ease;
}
.sticky-nav a:hover {
  color: #f2ede8;
}
.sticky-nav a:hover::after {
  transform: scaleX(1);
}
.sticky-nav a.active {
  color: #e8d4a4;
}
.sticky-nav a.active::after {
  transform: scaleX(1);
}
@media (max-width: 600px) {
  .sticky-nav {
    display: none;
  }
}

.biography-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) {
  .biography-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.bio-text {
  max-width: 640px;
}
.bio-text h2 {
  font-family: "Cinzel", "Trajan Pro", "Times New Roman", serif;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 32px;
}
.bio-text p {
  font-family: "Jost", "Futura", "Century Gothic", Trebuchet MS, sans-serif;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.8;
  color: #f2ede8;
  margin-bottom: 16px;
  text-align: justify;
  font-weight: 400;
}

.bio-image {
  position: sticky;
  top: 40px;
}
@media (max-width: 860px) {
  .bio-image {
    position: static;
    order: -1;
  }
}
.bio-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.05) brightness(0.95);
}
.bio-image figcaption {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(242, 237, 232, 0.62);
  margin-top: 8px;
  text-align: right;
  font-style: italic;
}

.bio-audio {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(201, 169, 110, 0.22);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bio-audio .bio-audio-label {
  font-family: "Cinzel", "Trajan Pro", "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 6px;
}
.bio-audio .bio-audio-title {
  font-style: italic;
  font-size: 16px;
  color: rgba(242, 237, 232, 0.62);
  margin-bottom: 8px;
}
.bio-audio audio {
  width: 100%;
  max-width: 400px;
  opacity: 0.8;
  filter: invert(1) brightness(0.7);
  transition: opacity 0.18s ease;
}
.bio-audio audio:hover {
  opacity: 1;
}

.audio-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) {
  .audio-layout {
    grid-template-columns: 1fr;
  }
}

.audio-tracks {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.track-item {
  border-top: 1px solid rgba(201, 169, 110, 0.22);
  padding-top: 32px;
}
.track-item:first-child {
  border-top: none;
  padding-top: 0;
}

.track-composer {
  font-family: "Cinzel", "Trajan Pro", "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 6px;
}

.track-title {
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 400;
  font-style: italic;
  color: #f2ede8;
  margin-bottom: 4px;
  line-height: 1.35;
}

.track-note {
  font-size: 14px;
  color: rgba(242, 237, 232, 0.62);
  font-style: normal;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.track-player audio {
  width: 100%;
  max-width: 380px;
  height: 36px;
  opacity: 0.75;
  filter: invert(1) brightness(0.65) sepia(0.2);
  transition: opacity 0.18s ease;
}
.track-player audio:hover, .track-player audio:focus {
  opacity: 1;
}

.audio-image {
  position: sticky;
  top: 40px;
}
@media (max-width: 860px) {
  .audio-image {
    position: static;
    max-width: 340px;
    margin: 0 auto 32px;
  }
}
.audio-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.05) brightness(0.9) saturate(0.9);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 860px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

.video-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-thumb {
  position: absolute;
  inset: 0;
  display: block;
  cursor: pointer;
  overflow: hidden;
  background: #0a0a0a;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.32s ease, opacity 0.32s ease;
  opacity: 0.8;
}
.video-thumb:hover img {
  transform: scale(1.03);
  opacity: 0.65;
}
.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'%3E%3Ccircle cx='40' cy='40' r='36' fill='rgba(0,0,0,0.55)' stroke='%23c9a96e' stroke-width='1.5'/%3E%3Cpolygon points='32,24 60,40 32,56' fill='%23c9a96e'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 72px 72px;
  transition: background-size 0.18s ease;
}
.video-thumb:hover::after {
  background-size: 80px 80px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}
.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
}

.video-modal-inner {
  position: relative;
  z-index: 1;
  width: min(90vw, 1100px);
  max-height: 90vh;
}

.video-modal-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.video-modal-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 28px;
  color: #f2ede8;
  opacity: 0.7;
  line-height: 1;
  padding: 4px 8px;
  transition: opacity 0.18s ease, color 0.18s ease;
  cursor: pointer;
}
.video-modal-close:hover {
  opacity: 1;
  color: #e8d4a4;
}

.video-yt-link {
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242, 237, 232, 0.62);
  transition: color 0.18s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.video-yt-link::after {
  content: "→";
  font-family: inherit;
}
.video-yt-link:hover {
  color: #e8d4a4;
}

.repertory-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) {
  .repertory-layout {
    grid-template-columns: 1fr;
  }
}

.repertory-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.repertory-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Jost", "Futura", "Century Gothic", Trebuchet MS, sans-serif;
  font-size: clamp(14px, 1.05vw, 16px);
}
.repertory-table thead tr {
  border-bottom: 1px solid rgba(201, 169, 110, 0.35);
}
.repertory-table thead th {
  font-family: "Cinzel", "Trajan Pro", "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c9a96e;
  font-weight: 400;
  padding: 0 32px 8px 0;
  text-align: left;
  white-space: nowrap;
}
.repertory-table thead th:last-child {
  padding-right: 0;
}
.repertory-table tbody tr {
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
  transition: background-color 0.18s ease;
}
.repertory-table tbody tr:hover {
  background-color: rgba(201, 169, 110, 0.05);
}
.repertory-table tbody tr.role-featured td.role {
  color: #e8d4a4;
}
.repertory-table tbody td {
  padding: 10px 32px 10px 0;
  vertical-align: middle;
  line-height: 1.35;
}
.repertory-table tbody td:last-child {
  padding-right: 0;
}
.repertory-table tbody td.composer {
  color: #f2ede8;
  font-weight: 400;
  white-space: nowrap;
}
.repertory-table tbody td.opera {
  color: rgba(242, 237, 232, 0.62);
  font-style: italic;
  font-weight: 300;
}
.repertory-table tbody td.role {
  color: rgba(242, 237, 232, 0.62);
  white-space: nowrap;
}

.repertory-image {
  position: sticky;
  top: 40px;
}
@media (max-width: 860px) {
  .repertory-image {
    position: static;
    max-width: 320px;
  }
}
.repertory-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.05) brightness(0.9) saturate(0.85);
}

.contacts-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) {
  .contacts-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .contacts-image {
    max-width: 400px;
  }
}
.contacts-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.05) brightness(0.9) saturate(0.9);
}

.contacts-info {
  padding-top: 8px;
}

.contacts-block {
  margin-bottom: 56px;
}
.contacts-block:last-child {
  margin-bottom: 0;
}

.contacts-label {
  font-family: "Cinzel", "Trajan Pro", "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 8px;
}

.contacts-value {
  font-size: clamp(15px, 1.2vw, 18px);
  color: #f2ede8;
  font-weight: 300;
  line-height: 1.7;
}
.contacts-value a {
  color: #f2ede8;
  border-bottom: 1px solid rgba(201, 169, 110, 0.22);
  transition: border-color 0.18s ease, color 0.18s ease;
}
.contacts-value a:hover {
  color: #e8d4a4;
  border-color: #c9a96e;
}

.contacts-note {
  font-size: 13px;
  color: rgba(242, 237, 232, 0.62);
  font-style: italic;
  line-height: 1.7;
  margin-top: 8px;
}

.site-footer {
  border-top: 1px solid rgba(201, 169, 110, 0.22);
  padding: 32px 0;
  margin-top: auto;
}
.site-footer p {
  font-family: "Cinzel", "Trajan Pro", "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(242, 237, 232, 0.3);
  text-align: center;
  text-transform: uppercase;
}

/*# sourceMappingURL=main.css.map */
