:root {
  --paper: #f5f2ea;
  --ink: #080808;
  --gold: #d9bb70;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.site-header {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(20px, 4vw, 56px);
}

.brand {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
  text-decoration: none;
}

.brand span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}

.nav {
  display: flex;
  gap: 8px;
  border-radius: 999px;
  background: rgba(8, 8, 8, .04);
  padding: 8px;
}

.nav a,
.start-link {
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 850;
  font-size: 14px;
}

.start-link {
  background: rgba(8, 8, 8, .05);
}

.topline {
  overflow: hidden;
  white-space: nowrap;
  background: #080808;
  color: rgba(247, 242, 232, .72);
  border-top: 1px solid rgba(8, 8, 8, .08);
  border-bottom: 1px solid rgba(247, 242, 232, .12);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.topline span {
  display: inline-block;
  min-width: 200%;
  padding: 12px 0;
  animation: tickerMove 34s linear infinite;
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.news-shell {
  margin: 0 clamp(12px, 1.4vw, 22px) 32px;
  border-radius: 26px;
  overflow: hidden;
  background: #080808;
}

.news-slider {
  height: clamp(430px, 58vh, 620px);
  position: relative;
  isolation: isolate;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .85s ease, visibility .85s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.94) contrast(1.04);
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .7) 34%, rgba(0, 0, 0, .25) 66%, rgba(0, 0, 0, .14)),
    linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .72));
}

.slide-copy {
  position: relative;
  z-index: 3;
  height: 100%;
  width: min(1180px, calc(100% - 84px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.kicker {
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  padding: 9px 12px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: clamp(11px, .8vw, 12px);
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.slide h1 {
  max-width: min(60%, 780px);
  margin: 0;
  font-size: clamp(36px, 5.3vw, 78px);
  line-height: .92;
  letter-spacing: 0;
  font-weight: 900;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.slide p {
  max-width: min(56%, 680px);
  margin: 16px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(15px, 1.35vw, 20px);
  line-height: 1.35;
  font-weight: 650;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  font-weight: 800;
}

.button {
  width: fit-content;
  margin-top: 20px;
  background: #f7f2e8;
  color: #080808;
  border-radius: 999px;
  padding: 12px 16px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
}

.arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 50px;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(0,0,0,.3);
  color: #fff;
  cursor: pointer;
  font-size: 28px;
  opacity: 0;
  transition: opacity .18s ease, background .18s ease;
}

.news-slider:hover .arrow,
.news-slider:focus-within .arrow {
  opacity: 1;
}

.arrow:hover {
  background: #f7f2e8;
  color: #080808;
}

.prev {
  left: 18px;
}

.next {
  right: 18px;
}

.dots {
  position: absolute;
  z-index: 6;
  left: clamp(42px, 5vw, 84px);
  bottom: 24px;
  display: flex;
  gap: 8px;
}

.dots button {
  width: 28px;
  height: 3px;
  border: 0;
  background: rgba(255,255,255,.35);
  cursor: pointer;
}

.dots button.active {
  background: var(--gold);
}

.editorial-hero {
  margin: 0 clamp(12px, 1.4vw, 22px) clamp(42px, 6vw, 86px);
  min-height: clamp(520px, 68vh, 720px);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.38) 46%, rgba(0,0,0,.08)),
    url("https://images.unsplash.com/photo-1503095396549-807759245b35?auto=format&fit=crop&w=2200&q=82") center / cover;
}

.editorial-copy {
  width: min(760px, calc(100% - 48px));
  padding: clamp(34px, 5vw, 64px);
  color: #fff;
}

.editorial-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  padding: 9px 13px;
  color: #fff;
  font-size: 12px;
  letter-spacing: .08em;
  font-weight: 900;
  text-transform: uppercase;
}

.editorial-kicker::before {
  content: "*";
  color: var(--gold);
}

.editorial-hero h1 {
  max-width: 760px;
  margin: 22px 0 18px;
  color: #fff;
  font-size: clamp(46px, 7.4vw, 104px);
  line-height: .86;
  letter-spacing: 0;
  font-weight: 950;
}

.editorial-hero p {
  max-width: 650px;
  margin: 0 0 28px;
  color: rgba(255,255,255,.9);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.08;
  font-weight: 800;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  border: 2px solid #fff;
  border-radius: 16px;
  padding: 17px 25px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 950;
}

.floating-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  border-radius: 16px;
  padding: 16px 20px;
  background: rgba(156, 138, 98, .94);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .03em;
}

.program-intro {
  padding: 0 clamp(12px, 1.4vw, 22px) clamp(42px, 6vw, 86px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: end;
  margin-bottom: 46px;
}

.intro-grid h2 {
  margin: 0;
  color: #080808;
  font-size: clamp(42px, 6.4vw, 88px);
  line-height: .9;
  letter-spacing: 0;
  font-weight: 950;
}

.intro-grid p {
  margin: 0;
  color: #3f3d37;
  font-size: clamp(18px, 2.1vw, 28px);
  line-height: 1.08;
  font-weight: 720;
}

.program-card-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 18px;
}

.program-card {
  min-height: 580px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  background: #080808;
}

.program-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 42%, rgba(0,0,0,.62) 100%);
}

.program-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.88) contrast(1.02);
}

.program-card-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  color: #fff;
}

.program-card h3 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: .92;
  font-weight: 850;
  letter-spacing: 0;
}

.program-card p {
  max-width: 360px;
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.16;
  font-weight: 760;
}

.program-card a {
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.54);
  border-radius: 999px;
  padding: 12px 14px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 950;
}

.method-panel {
  margin: 0 clamp(12px, 1.4vw, 22px) clamp(42px, 6vw, 86px);
  border-radius: 30px;
  padding: clamp(30px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
  background: #20201c;
  color: #fff;
}

.method-panel h2 {
  margin: 26px 0 0;
  color: #fff;
  font-size: clamp(42px, 5.7vw, 82px);
  line-height: .9;
  letter-spacing: 0;
  font-weight: 820;
}

.method-panel p {
  margin: 18px 0 0;
  color: #ddd8cc;
  font-size: clamp(17px, 1.8vw, 23px);
  line-height: 1.15;
  font-weight: 700;
}

.method-list {
  display: grid;
  gap: 12px;
}

.method-list div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 18px 20px;
  background: rgba(255,255,255,.08);
}

.method-list strong {
  font-size: 20px;
  font-weight: 700;
}

.method-list span {
  color: #d7cfbf;
  font-size: 14px;
  font-weight: 800;
  text-align: right;
}

.artist-index {
  margin: 0 clamp(12px, 1.4vw, 22px) clamp(42px, 6vw, 86px);
  border-radius: 30px;
  padding: clamp(28px, 4.8vw, 58px);
  background: #fdfbf5;
  border: 1px solid rgba(8, 8, 8, .08);
  box-shadow: 0 20px 70px rgba(8, 8, 8, .08);
}

.artist-index-head {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(260px, .5fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}

.artist-index h2 {
  margin: 18px 0 0;
  max-width: 850px;
  font-size: clamp(44px, 6.6vw, 96px);
  line-height: .88;
  letter-spacing: 0;
  font-weight: 940;
}

.artist-index p {
  margin: 0;
  color: rgba(8, 8, 8, .62);
  font-size: 17px;
  line-height: 1.42;
  font-weight: 720;
}

.artist-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  max-height: 620px;
  overflow: auto;
  padding: 4px 8px 4px 0;
  scrollbar-color: rgba(8, 8, 8, .28) transparent;
}

.artist-row {
  min-height: 86px;
  border-radius: 18px;
  padding: 14px 15px;
  background: rgba(8, 8, 8, .045);
  border: 1px solid rgba(8, 8, 8, .07);
  display: grid;
  align-content: start;
  gap: 4px;
}

.artist-row.featured {
  background: #080808;
  color: #f7f2e8;
  border-color: #080808;
}

.artist-row strong,
.artist-row span,
.artist-row em {
  display: block;
}

.artist-row strong {
  font-size: 15px;
  line-height: 1.08;
  font-weight: 920;
}

.artist-row span {
  color: rgba(8, 8, 8, .66);
  font-size: 12px;
  line-height: 1.22;
  font-weight: 780;
}

.artist-row em {
  color: var(--gold);
  font-size: 11px;
  line-height: 1.1;
  font-style: normal;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.artist-row.featured span {
  color: rgba(247, 242, 232, .72);
}

.opera-atlas {
  padding: clamp(54px, 7vw, 98px) clamp(20px, 4vw, 58px);
  background: #080808;
  color: #f7f2e8;
  overflow: hidden;
}

.atlas-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .5fr);
  gap: 30px;
  align-items: end;
  margin: 0 0 34px;
}

.section-kicker {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  border: 1px solid rgba(247, 242, 232, .24);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.opera-atlas h2 {
  max-width: 980px;
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(44px, 7.2vw, 106px);
  line-height: .86;
  letter-spacing: 0;
  font-weight: 900;
}

.atlas-head p {
  margin: 0;
  color: rgba(247, 242, 232, .72);
  font-size: 18px;
  line-height: 1.46;
  font-weight: 650;
}

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

.region-card {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .88)),
    var(--card-image) center / cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.region-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .82)),
    linear-gradient(90deg, rgba(0, 0, 0, .42), rgba(0, 0, 0, .1));
}

.region-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .45;
  mix-blend-mode: soft-light;
}

.region-body {
  position: absolute;
  inset: auto 0 0;
  padding: clamp(20px, 2vw, 28px);
}

.region-city {
  display: inline-flex;
  max-width: 100%;
  border: 1px solid rgba(247, 242, 232, .28);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .07em;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.region-card h3 {
  margin: 14px 0 10px;
  color: #fff;
  font-size: clamp(32px, 3.25vw, 50px);
  line-height: .9;
  font-weight: 850;
  letter-spacing: 0;
}

.region-card p {
  margin: 0 0 18px;
  color: rgba(247, 242, 232, .82);
  font-size: 14px;
  line-height: 1.32;
  font-weight: 720;
}

.house-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.house-list a {
  display: inline-flex;
  max-width: 100%;
  border-radius: 999px;
  padding: 9px 11px;
  background: #f7f2e8;
  color: #080808;
  text-decoration: none;
  font-size: 11px;
  font-weight: 950;
  line-height: 1.15;
}

.house-list a:hover,
.house-list a:focus-visible {
  background: var(--gold);
  outline: none;
}

.status {
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.72);
  font-weight: 800;
}

@media (max-width: 760px) {
  .site-header {
    height: auto;
    padding-top: 18px;
    padding-bottom: 18px;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
  }

  .news-slider {
    height: 540px;
  }

  .slide-copy {
    width: calc(100% - 36px);
  }

  .slide h1,
  .slide p {
    max-width: 100%;
  }

  .slide h1 {
    font-size: clamp(34px, 10vw, 52px);
    line-height: .98;
    -webkit-line-clamp: 4;
  }

  .arrow {
    opacity: 1;
    top: auto;
    bottom: 22px;
    transform: none;
  }

  .next {
    left: 72px;
    right: auto;
  }

  .intro-grid,
  .program-card-grid,
  .method-panel,
  .artist-index-head,
  .atlas-head,
  .region-grid {
    grid-template-columns: 1fr;
  }

  .artist-index {
    border-radius: 22px;
  }

  .artist-list {
    grid-template-columns: 1fr;
    max-height: 560px;
  }

  .editorial-hero {
    min-height: 610px;
    border-radius: 22px;
  }

  .editorial-copy {
    width: 100%;
    padding: 24px 22px 72px;
  }

  .floating-note {
    left: 22px;
    right: auto;
    bottom: 18px;
  }

  .program-card {
    min-height: 430px;
  }

  .program-card-content,
  .method-list div {
    display: block;
  }

  .program-card a {
    display: inline-flex;
    margin-top: 14px;
  }

  .method-list span {
    display: block;
    margin-top: 7px;
    text-align: left;
  }

  .opera-atlas h2 {
    font-size: clamp(40px, 12vw, 64px);
  }

  .region-card {
    min-height: 450px;
    border-radius: 22px;
  }

  .region-body {
    padding: 22px;
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .artist-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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