:root {
  --ink: #161616;
  --muted: #646464;
  --paper: #fbfaf8;
  --soft: #f0ece7;
  --line: #ddd6cf;
  --accent: #b12b58;
  --accent-dark: #7a183a;
  --olive: #5b6245;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(28, 24, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 70%, white);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--accent-dark);
  text-decoration: none;
  transition: transform 160ms ease;
}

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

.share-rail {
  position: fixed;
  z-index: 30;
  left: 18px;
  top: 50%;
  display: grid;
  gap: 10px;
  justify-items: start;
  transform: translateY(-50%);
}

.side-arrow {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: var(--white);
  background: rgba(22, 22, 22, 0.72);
  box-shadow: var(--shadow);
  font-size: 1.45rem;
  line-height: 1;
  transform: translateX(4px);
  backdrop-filter: blur(12px);
}

.share-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  color: var(--white);
  background: rgba(122, 24, 58, 0.9);
  box-shadow: var(--shadow);
  cursor: pointer;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.share-status {
  max-width: 220px;
  padding: 8px 10px;
  border-radius: 4px;
  color: var(--white);
  background: rgba(22, 22, 22, 0.84);
  font-size: 0.78rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
  word-break: break-word;
}

.share-status.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.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;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 60px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
  color: var(--ink);
  background: rgba(251, 250, 248, 0.94);
  box-shadow: 0 10px 30px rgba(22, 22, 22, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 0;
  text-decoration: none;
}

.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1;
}

.brand small {
  color: currentColor;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.8vw, 34px);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.site-nav a:hover {
  color: var(--accent);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.language-switcher button {
  min-width: 36px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  color: currentColor;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.language-switcher button[aria-pressed="true"] {
  color: var(--ink);
  background: var(--white);
}

.site-header.is-scrolled .language-switcher button[aria-pressed="true"],
.site-header.nav-open .language-switcher button[aria-pressed="true"] {
  color: var(--white);
  background: var(--accent);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 160px clamp(22px, 6vw, 86px) 90px;
  color: var(--white);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 12, 10, 0.68), rgba(16, 12, 10, 0.28) 52%, rgba(16, 12, 10, 0.06)),
    linear-gradient(0deg, rgba(16, 12, 10, 0.68), rgba(16, 12, 10, 0) 54%);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(122, 24, 58, 0.36), rgba(91, 98, 69, 0.2)),
    url("assets/donka-conducting.jpg");
  background-position: center, 0% center;
  background-repeat: no-repeat;
  background-size: cover, auto 118%;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd7e4;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
  font-weight: 500;
}

h1 {
  max-width: 700px;
  margin-bottom: 20px;
  font-size: clamp(4.2rem, 12vw, 9.5rem);
}

h2 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero p {
  max-width: 630px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.04rem, 1.8vw, 1.28rem);
}

.hero-actions,
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.button.primary {
  color: var(--white);
  background: var(--accent);
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
}

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

.section {
  padding: clamp(76px, 10vw, 132px) clamp(22px, 6vw, 86px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
}

.split p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.06rem;
}

.facts {
  display: grid;
  gap: 18px;
  padding-top: 10px;
}

.facts div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.facts strong {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.facts span {
  color: var(--muted);
}

.recordings,
.practical-info,
.news {
  background: var(--soft);
}

.section-heading {
  margin-bottom: clamp(34px, 5vw, 60px);
}

.section-heading p {
  max-width: 460px;
  margin-bottom: 0;
  color: var(--muted);
}

.recording-grid,
.info-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.info-grid article {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: clamp(22px, 3vw, 30px);
  border-top: 4px solid var(--olive);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.recording-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 3vw, 32px);
  border-top: 4px solid var(--accent);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.info-grid span,
.recording-card span {
  margin-bottom: auto;
  color: var(--olive);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.info-grid p {
  color: var(--muted);
}

.info-grid a {
  width: fit-content;
  margin-top: auto;
  color: var(--accent);
  font-weight: 900;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.recording-card p,
.concert-list p,
.news-grid p,
.contact p {
  color: var(--muted);
}

.concert-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.concert-list article {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(20px, 5vw, 72px);
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.concert-list time {
  color: var(--accent);
  font-weight: 800;
}

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

.news-grid article {
  background: var(--white);
}

.news-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.news-grid div {
  padding: 24px;
}

.contact {
  padding: clamp(76px, 10vw, 132px) clamp(22px, 6vw, 86px);
  color: var(--white);
  background: var(--accent-dark);
}

.contact .section-kicker,
.contact p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.85fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.email-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 2px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.contact-form .button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.form-note {
  min-height: 1.4em;
  margin: -4px 0 0;
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(22px, 6vw, 86px);
  color: var(--muted);
  background: var(--paper);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 860px) {
  .site-header {
    gap: 12px;
  }

  .nav-toggle {
    display: block;
    order: 4;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 22px 24px;
    color: var(--ink);
    background: rgba(251, 250, 248, 0.98);
    box-shadow: 0 18px 30px rgba(22, 22, 22, 0.1);
  }

  .language-switcher {
    margin-left: auto;
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 88vh;
    padding-top: 130px;
  }

  .hero-media {
    background-position: center, 25% center;
    background-size: cover, auto 105%;
  }

  .split,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .recording-grid,
  .info-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand span {
    font-size: 1.18rem;
  }

  .brand small {
    font-size: 0.62rem;
  }

  .language-switcher button {
    min-width: 32px;
    min-height: 28px;
    font-size: 0.68rem;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .facts div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .share-rail {
    left: 12px;
    top: auto;
    bottom: 16px;
    grid-auto-flow: column;
    align-items: center;
    transform: none;
  }

  .side-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.25rem;
  }

  .share-button {
    min-height: 42px;
    padding: 9px 12px;
  }
}
