:root {
  --bg: #f7f3ee;
  --surface: rgba(255, 252, 248, 0.88);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --ink: #171411;
  --muted: #62584f;
  --line: rgba(23, 20, 17, 0.16);
  --accent: #c99b3d;
  --shadow: 0 20px 48px rgba(39, 25, 13, 0.08);
  --header-height: 5.5rem;
  --content-width: 86rem;
  --bg-fade: 0;
  --nav-bg: rgba(236, 233, 232, 0.74);
  --nav-line: rgba(109, 98, 96, 0.14);
  --nav-ink: #4d4342;
  --nav-muted: #7a6d6b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(247, 243, 238, 0), rgba(247, 243, 238, 0)),
    url("Calm cow in a muted field.png");
  background-position: center center, center 72%;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  background-attachment: scroll, fixed;
  filter: saturate(0.8);
  opacity: calc(1 - (var(--bg-fade) * 0.52));
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.48), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.12));
  opacity: calc(var(--bg-fade) * 0.72);
  pointer-events: none;
  z-index: -1;
}

.legal-page::before,
.legal-page::after {
  display: none;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.65rem 1rem;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: var(--header-height);
  backdrop-filter: blur(14px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-line);
}

.site-header__inner {
  max-width: var(--content-width);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0 3.5rem;
}

.site-header--legal .site-brand,
.site-header--legal.is-scrolled .site-brand,
.legal-page__brand {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.site-brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  text-decoration: none;
  opacity: 0;
  transform: translateY(-0.35rem);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.site-header.is-scrolled .site-brand {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.site-brand__kicker {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--nav-muted);
}

.site-brand__title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--nav-ink);
}

.site-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
  cursor: pointer;
}

.site-menu-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--nav-ink);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.site-header.is-menu-open .site-menu-toggle span:nth-child(1) {
  transform: translateY(0.4rem) rotate(45deg);
}

.site-header.is-menu-open .site-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .site-menu-toggle span:nth-child(3) {
  transform: translateY(-0.4rem) rotate(-45deg);
}

.site-nav a {
  position: relative;
  padding: 0.35rem 0;
  font-size: 0.84rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--nav-muted);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2rem;
  height: 2px;
  background: var(--nav-ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a.is-active {
  color: var(--nav-ink);
}

.site-nav a.is-active::after {
  transform: scaleX(1);
}

.hero,
.story-block {
  padding-left: 2rem;
  padding-right: 2rem;
}

.hero {
  min-height: calc(100vh - var(--header-height) - 2rem);
  display: block;
  padding-left: 4rem;
  padding-top: 2rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--line);
}

.eyebrow,
.detail-panel__label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero h1,
.story-copy h2,
.story-marker__name,
.story-quote__title,
.detail-panel h3,
.legal-title {
  margin: 0;
  font-family: inherit;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.hero h1 {
  margin-top: 0.8rem;
  font-size: clamp(4.5rem, 11vw, 9.8rem);
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero__lead,
.story-copy p,
.story-copy li,
.detail-panel p,
.legal-main p,
.legal-main li {
  font-size: 1.3rem;
  line-height: 1.75;
}

.hero__lead {
  max-width: 62rem;
  margin: 1.5rem 0 0;
  color: var(--ink);
}

.story-quote,
.detail-panel,
.note-box,
.price-card,
.badge-box {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  border-radius: 1.2rem;
}

.content-shell {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 3.5rem 5rem;
}

.story-block {
  padding: 3.5rem 0 4rem;
  border-top: 1px solid var(--line);
}

.story-block__inner {
  display: grid;
  grid-template-columns: minmax(18rem, 24rem) minmax(0, 50rem);
  justify-content: center;
  gap: 6.5rem;
}

.story-marker {
  position: relative;
  text-align: left;
}

.story-marker__inner {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.story-marker__index {
  margin: 0 0 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.story-marker__name {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.story-marker__name::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 12rem;
  margin-top: 1rem;
  border-top: 1px solid var(--line);
}

.story-copy {
  max-width: 50rem;
}

.story-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(3rem, 6.6vw, 5.3rem);
}

.story-copy p {
  max-width: 46rem;
  margin: 0 0 1.15rem;
}

.lead {
  font-size: 1.26rem;
  color: var(--ink);
}

.story-block:first-of-type .lead {
  max-width: 52rem;
}

.sub-head {
  margin: 3.5rem 0 1rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}

#ort .story-copy,
#ort .story-copy p,
#ort .story-copy .lead,
#ort .story-copy .detail-panel {
  max-width: 52rem;
}

.story-quote {
  margin: 2rem 0;
  padding: 1.4rem 1.5rem;
}

.story-quote--light {
  background: rgba(255, 255, 255, 0.72);
}

.story-quote__body {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.8;
}

.fact-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.fact-grid div,
.price-card {
  padding: 1rem 1.15rem;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
}

.fact-grid span,
.price-card span {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.fact-grid strong,
.price-card strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1.35;
}

.fact-grid em,
.price-card em {
  display: block;
  margin-top: 0.3rem;
  font-style: normal;
  color: var(--muted);
}

.detail-panel,
.note-box,
.badge-box {
  padding: 1.5rem 1.6rem;
  margin-top: 2rem;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.artist-card {
  display: grid;
  grid-template-columns: minmax(0, 12.5rem) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
  padding: 1rem;
  color: var(--ink);
  text-decoration: none;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.artist-card:hover,
.artist-card:focus-visible {
  transform: translateY(-0.2rem);
  box-shadow: 0 24px 50px rgba(39, 25, 13, 0.12);
  border-color: rgba(23, 20, 17, 0.24);
}

.artist-card__image-wrap,
.artist-card__placeholder {
  min-height: 15rem;
  overflow: hidden;
  border-radius: 1rem;
  background: #e9e0d5;
}

.artist-card__image-wrap--dark {
  background: #090909;
}

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

.artist-card__image--semenenko,
.artist-card__image--stuemke {
  object-position: 89% 14%;
}

.artist-card__image--smirnova {
  object-position: 84% 8%;
}

.artist-card__image--muchychka {
  object-position: 84% 10%;
}

.artist-card__placeholder {
  display: grid;
  place-items: center;
  padding: 1.2rem;
  text-align: center;
  color: var(--muted);
  background:
    linear-gradient(160deg, rgba(201, 155, 61, 0.18), rgba(255, 255, 255, 0.82)),
    rgba(255, 252, 248, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.artist-card__placeholder span {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.artist-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.artist-card__instrument {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.artist-card__body h3 {
  margin: 0 0 0.7rem;
  font-size: 1.55rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.artist-card__body p:last-of-type {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.65;
}

.artist-card__link {
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

.detail-panel--subtle {
  background: rgba(255, 255, 255, 0.64);
}

.detail-panel h3 {
  margin: 0.5rem 0 0.8rem;
  font-size: 2rem;
}

.detail-panel p {
  margin: 0;
}

.detail-panel p + p {
  margin-top: 0.2rem;
}

.address-line {
  white-space: nowrap;
}

.badge-box {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
}

.badge-box--link {
  color: var(--ink);
  text-decoration: none;
}

.badge-box__logo {
  width: 4rem;
  height: auto;
  flex: 0 0 auto;
}

.note-box {
  color: var(--muted);
}

.note-box--plain {
  padding: 0;
  margin-top: 2rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  line-height: 1.7;
}

.mail-link {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.notice-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.notice-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.4rem 2rem 3rem;
}

.site-footer__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  color: var(--muted);
}

.site-footer__title {
  margin: 0 0 0.35rem;
  color: var(--ink);
  font-weight: 800;
}

.site-footer__inner p {
  margin: 0.25rem 0;
}

.site-footer__links {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.site-footer a {
  text-decoration: none;
  color: var(--ink);
}

.legal-page {
  background: var(--bg);
}

.legal-main {
  max-width: 52rem;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}

.legal-title {
  font-size: clamp(2.8rem, 7vw, 4.2rem);
  margin-bottom: 2rem;
}

.legal-section {
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 0.8rem;
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.artist-page {
  background: var(--bg);
}

.artist-page::before,
.artist-page::after {
  display: none;
}

.artist-overview-hero {
  min-height: auto;
  padding-bottom: 4rem;
}

.artist-story-copy {
  max-width: 46rem;
}

.artist-portrait-card {
  float: right;
  width: min(17rem, 42%);
  aspect-ratio: 4 / 5;
  margin: 0 0 1rem 1.5rem;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.artist-portrait-card img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center center;
  background: transparent;
  border: 0;
  border-radius: 0.9rem;
}

.artist-story-copy::after {
  content: "";
  display: block;
  clear: both;
}

.program-story-copy {
  max-width: 48rem;
}

.program-intro {
  margin-bottom: 1.6rem;
}

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

.program-item {
  padding: 0 0 1rem;
  border-bottom: 1px solid var(--line);
}

.program-item__index {
  margin: 0 0 0.45rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.program-item h3 {
  margin: 0 0 0.45rem;
  font-size: 1.45rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.program-item p {
  margin: 0 0 0.55rem;
}

.program-item p:last-child {
  margin-bottom: 0;
}

.program-item__performers {
  font-weight: 700;
  color: var(--ink);
}

@media (max-width: 980px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .content-shell {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .story-block__inner,
  .story-block + .story-block .story-block__inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .story-marker__inner {
    position: static;
  }

}

@media (min-width: 641px) and (max-width: 1366px) {
  body::before {
    background-position: center center, center 64%;
    background-size: cover, 112% auto;
  }
}

@media (max-width: 640px) {
  .hero,
  .content-shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero {
    padding-top: 2rem;
  }

  .site-header {
    height: auto;
  }

  .site-header__inner {
    position: relative;
    grid-template-columns: 1fr auto;
    padding: 0.9rem 1rem;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 1rem;
    right: 1rem;
    z-index: 20;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.85rem 1rem 1rem;
    background: rgba(240, 236, 235, 0.96);
    border: 1px solid var(--nav-line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
  }

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

  .site-nav a {
    width: 100%;
    padding: 0.8rem 0;
  }

  .site-menu-toggle {
    display: inline-flex;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  .story-copy h2 {
    font-size: clamp(2.4rem, 14vw, 3.6rem);
  }

  .fact-grid,
  .price-grid,
  .artist-grid {
    grid-template-columns: 1fr;
  }

  .artist-portrait-card {
    float: none;
    width: 100%;
    max-width: 20rem;
    margin: 0 0 1.2rem;
  }

  body::before {
    background-attachment: scroll, scroll;
  }

  .legal-main {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
