
:root {
  --bg: #090b11;
  --bg-2: #10141d;
  --bg-3: #171d28;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(217, 183, 122, 0.35);
  --text: #f7f4ef;
  --muted: #cdc5b7;
  --muted-2: #9f9689;
  --accent: #d9b77a;
  --accent-2: #b78943;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  --radius: 28px;
  --radius-sm: 18px;
  --wrap: min(1220px, calc(100% - 40px));
  --header-h: 86px;
  --serif: "Georgia", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 183, 122, 0.16), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(70, 88, 121, 0.22), transparent 22%),
    linear-gradient(180deg, #07090e 0%, #0a0d13 22%, #101522 100%);
  min-height: 100vh;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.95), transparent 88%);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 11, 17, 0.7);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.brand__mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #f2d9a4);
  color: #12161d;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 40px rgba(217, 183, 122, 0.25);
}
.brand__mark--small {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 20px;
  flex-shrink: 0;
}
.brand__text strong {
  display: block;
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.brand__text em {
  display: block;
  margin-top: 4px;
  color: var(--muted-2);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
  transition: 0.24s ease;
}
.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-current {
  background: rgba(255,255,255,0.08);
  color: var(--text);
  outline: none;
}
.nav-cta {
  margin-left: 10px;
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--text);
  cursor: pointer;
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero-home {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-slides,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-slides {
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 6s ease;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  background:
    linear-gradient(180deg, rgba(5,7,11,0.22) 0%, rgba(5,7,11,0.2) 20%, rgba(5,7,11,0.78) 72%, rgba(5,7,11,0.95) 100%),
    linear-gradient(90deg, rgba(5,7,11,0.72) 0%, rgba(5,7,11,0.3) 45%, rgba(5,7,11,0.12) 100%);
}
.hero-home__content {
  position: relative;
  z-index: 2;
  padding: 110px 0 72px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(217,183,122,0.1);
  color: #f0dbaf;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-home h1,
.page-hero h1 {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 780px;
}
.hero-home h1 span,
.page-hero h1 span {
  display: block;
  margin-top: 18px;
  font-size: clamp(22px, 2.7vw, 34px);
  color: #f2d8aa;
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.hero-lead,
.page-lead {
  max-width: 680px;
  margin: 26px 0 0;
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero-caption {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-top: 42px;
}
.hero-bullets {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-bullet {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.24);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: 0.24s ease;
}
.hero-bullet.is-active {
  background: var(--accent);
  border-color: transparent;
  box-shadow: 0 0 0 6px rgba(217,183,122,0.12);
}
.hero-note {
  max-width: 420px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}
.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}
.btn--accent {
  background: linear-gradient(135deg, var(--accent), #f2d8aa);
  color: #10131a;
  box-shadow: 0 18px 46px rgba(217,183,122,0.18);
}
.btn--ghost {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: var(--text);
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(255,255,255,0.09);
}
.btn--small {
  padding: 12px 16px;
  font-size: 14px;
}
.btn--outline {
  border-color: rgba(217,183,122,0.38);
  background: rgba(217,183,122,0.08);
  color: #f3deaf;
}

main {
  padding-bottom: 40px;
}

.section {
  padding: 84px 0;
}
.section--tight {
  padding: 58px 0;
}
.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}
.section__head--stack {
  display: block;
}
.section__label {
  display: block;
  color: #f1d8a8;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  margin-bottom: 12px;
}
.section__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.section__text {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: -50px;
  position: relative;
  z-index: 3;
}
.quick-card,
.card,
.panel,
.contact-card,
.release-card,
.timeline-card,
.gallery-tile,
.platform-card {
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.quick-card {
  padding: 24px;
  min-height: 220px;
  transition: transform 0.24s ease, border-color 0.24s ease;
}
.quick-card:hover,
.quick-card:focus-visible,
.card:hover,
.card:focus-within,
.gallery-tile:hover,
.gallery-tile:focus-visible,
.platform-card:hover,
.platform-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(217,183,122,0.32);
  outline: none;
}
.quick-card__eyebrow,
.card__eyebrow,
.small-caps {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(217,183,122,0.08);
  border: 1px solid rgba(217,183,122,0.24);
  color: #f0d9af;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.quick-card h3,
.card h3,
.release-card h3,
.contact-card h3,
.timeline-card h3 {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.quick-card p,
.card p,
.release-card p,
.contact-card p,
.timeline-card p,
.platform-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.74;
}
.quick-card__link,
.text-link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f2dcac;
  font-weight: 600;
}
.text-link::after {
  content: "→";
  transition: transform 0.24s ease;
}
.quick-card:hover .quick-card__link::after,
.text-link:hover::after {
  transform: translateX(4px);
}
.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 18px;
}
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  padding: 26px;
  min-height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.card__meta {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: var(--muted);
}

.card__cover-link {
  display: block;
  margin: 14px 0 4px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.card__cover {
  display: block;
  width: 100%;
  height: auto;
}
.card__footer {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}
.panel {
  overflow: hidden;
}
.panel--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.panel--copy {
  padding: 36px;
}
.panel--copy .section__title {
  font-size: clamp(30px, 3.4vw, 46px);
}
.quote-box {
  margin-top: 22px;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(217,183,122,0.18);
  background: rgba(217,183,122,0.08);
  color: var(--text);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.home-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}
.home-gallery__large,
.home-gallery__stack a {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}
.home-gallery__large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-gallery__stack {
  display: grid;
  gap: 18px;
}

.page-hero {
  position: relative;
  padding: 88px 0 54px;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,8,12,0.32), rgba(6,8,12,0.82)),
    var(--hero-image, linear-gradient(135deg, rgba(217,183,122,0.1), rgba(60,72,98,0.1)));
  background-size: cover;
  background-position: center;
  filter: saturate(1.02);
}
.page-hero .wrap {
  position: relative;
  z-index: 1;
}
.page-hero__content {
  max-width: 860px;
  padding: 40px 0 36px;
}
.page-hero__meta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--muted);
  font-size: 14px;
}

.rich-text {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: start;
}
.rich-text__body {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.92;
}
.rich-text__body p {
  margin: 0 0 18px;
}
.rich-text__body p:last-child { margin-bottom: 0; }

.direction-list,
.timeline {
  display: grid;
  gap: 16px;
}
.timeline {
  margin-top: 24px;
}
.timeline-card {
  padding: 22px 24px;
}
.timeline-card strong {
  display: block;
  color: #f0d9ac;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.timeline-card p {
  margin-top: 12px;
}

.work-group {
  margin-top: 32px;
}
.work-group:first-of-type {
  margin-top: 0;
}
.work-group__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.work-group__head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: -0.03em;
}
.work-group__head p {
  margin: 0;
  color: var(--muted);
}

.release-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
}
.release-cover {
  align-self: start;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}
.release-cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.release-card {
  padding: 30px;
}
.release-card ul,
.tracklist,
.link-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.tracklist li,
.link-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
}
.tracklist li:last-child,
.link-list li:last-child {
  border-bottom: none;
}
.tracklist strong {
  color: var(--text);
  display: inline-block;
  min-width: 30px;
}

.tracklist a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.tracklist a:hover,
.tracklist a:focus-visible {
  color: var(--accent);
  text-decoration: underline;
}
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.platform-card {
  padding: 22px;
  min-height: 180px;
}
.platform-card h3 {
  margin: 16px 0 0;
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -0.03em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  max-width: 980px;
  margin-inline: auto;
}
.gallery-tile {
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  display: block;
  cursor: zoom-in;
}
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-tile:hover img {
  transform: scale(1.04);
}
.gallery-tile--wide { grid-column: span 7; min-height: 220px; }
.gallery-tile--tall { grid-column: span 5; min-height: 220px; }
.gallery-tile--half { grid-column: span 4; min-height: 165px; }
.gallery-tile::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px 18px;
  height: 74px;
  background: linear-gradient(180deg, transparent, rgba(4,6,9,0.72));
  border-radius: 18px;
  pointer-events: none;
}
.gallery-tile__caption {
  position: absolute;
  inset: auto 24px 24px 24px;
  z-index: 2;
  color: #f7f2e8;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(3,4,8,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  z-index: 120;
}
.lightbox.is-open { display: flex; }
.lightbox__inner {
  position: relative;
  max-width: min(1200px, 100%);
  max-height: min(92vh, 100%);
}
.lightbox__image {
  max-width: 100%;
  max-height: 92vh;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: rgba(0,0,0,0.5);
  color: white;
  font-size: 28px;
  cursor: pointer;
}
.lightbox__caption {
  margin-top: 12px;
  color: var(--muted);
  text-align: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
}
.contact-card {
  padding: 30px;
}
.contact-card__list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}
.contact-item {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.contact-item span {
  display: block;
  color: var(--muted-2);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.contact-item strong,
.contact-item a {
  display: block;
  margin-top: 8px;
  font-size: 26px;
  font-family: var(--serif);
  letter-spacing: -0.03em;
}
.contact-item a:hover { color: #f2d8aa; }
.contact-photo {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(8,11,17,0.72);
  margin-top: 40px;
}
.footer-grid {
  padding: 32px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 24px;
  align-items: start;
}
.footer-brand {
  display: flex;
  gap: 14px;
  align-items: start;
}
.footer-brand p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}
.footer-links,
.footer-contacts {
  display: grid;
  gap: 10px;
}
.footer-links a,
.footer-contacts a,
.footer-socials a {
  color: var(--muted);
}
.footer-links a:hover,
.footer-contacts a:hover,
.footer-socials a:hover {
  color: #f2d8aa;
}
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .quick-links,
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split,
  .release-grid,
  .contact-layout,
  .rich-text,
  .home-gallery,
  .grid-3,
  .grid-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .gallery-tile--wide,
  .gallery-tile--tall,
  .gallery-tile--half {
    grid-column: span 12;
    min-height: 220px;
  }
}
@media (max-width: 840px) {
  :root { --wrap: min(1220px, calc(100% - 28px)); }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    top: calc(var(--header-h) + 8px);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 22px;
    background: rgba(8, 11, 17, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .nav-link, .nav-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .nav-cta { margin-left: 0; margin-top: 8px; }
  .hero-home__content { padding: 82px 0 58px; }
  .hero-caption {
    flex-direction: column;
    align-items: start;
  }
  .quick-links {
    margin-top: 24px;
  }
  .page-hero {
    padding: 58px 0 36px;
  }
}
@media (max-width: 640px) {
  .hero-home h1, .page-hero h1 {
    font-size: clamp(40px, 14vw, 58px);
    line-height: .98;
  }
  .hero-home h1 span, .page-hero h1 span {
    font-size: 22px;
    margin-top: 14px;
  }
  .hero-lead, .page-lead, .section__text {
    font-size: 16px;
  }
  .btn { width: 100%; }
  .quick-links, .grid-4, .platform-grid { grid-template-columns: 1fr; }
  .quote-box {
    font-size: 24px;
  }
  .card, .quick-card, .release-card, .contact-card, .panel--copy {
    padding: 22px;
  }
  .gallery-tile--wide,
  .gallery-tile--tall,
  .gallery-tile--half {
    min-height: 190px;
  }
}


/* Language switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
}
.lang-switch__link {
  min-width: 38px;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  transition: 0.24s ease;
}
.lang-switch__link:hover,
.lang-switch__link:focus-visible,
.lang-switch__link.is-current {
  background: rgba(217,183,122,0.16);
  color: #f2d8aa;
  outline: none;
}
@media (max-width: 840px) {
  .lang-switch {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    margin-top: 8px;
  }
  .lang-switch__link {
    flex: 1;
  }
}
/* End language switcher */

/* Compact fixed-size thumbnails for the portrait gallery.
   Keep the lightbox target image unchanged; only the visible previews are constrained. */
.gallery-grid {
  grid-template-columns: repeat(auto-fit, 5cm);
  justify-content: center;
  align-items: start;
  max-width: min(100%, calc(25cm + 48px));
}
.gallery-tile,
.gallery-tile--wide,
.gallery-tile--tall,
.gallery-tile--half {
  grid-column: auto;
  width: 5cm;
  height: 5cm;
  min-height: 0;
  aspect-ratio: 1 / 1;
}
.gallery-tile::after {
  inset: auto 10px 10px 10px;
  height: 46px;
  border-radius: 12px;
}
.gallery-tile__caption {
  inset: auto 14px 14px 14px;
  font-size: 11px;
}

/* Fixed small thumbnails for the homepage portrait preview.
   Keep all preview cards equal and compact; full gallery images remain unchanged. */
.home-gallery {
  grid-template-columns: repeat(auto-fit, 5cm);
  justify-content: start;
  align-items: start;
  gap: 12px;
}
.home-gallery__stack {
  display: contents;
}
.home-gallery__large,
.home-gallery__stack a {
  display: block;
  width: 5cm;
  height: 5cm;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
}
.home-gallery__large img,
.home-gallery__stack a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 420px) {
  .home-gallery {
    grid-template-columns: repeat(auto-fit, minmax(0, min(5cm, 100%)));
  }
  .home-gallery__large,
  .home-gallery__stack a {
    width: min(5cm, 100%);
    height: min(5cm, calc(100vw - 28px));
  }
}


/* Online audio player */
.audio-wrap {
  margin-top: 24px;
}
.online-listening {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(217,183,122,0.18);
  border-radius: 22px;
  background: rgba(6,8,12,0.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.online-listening__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.online-listening__head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}
.audio-track-list {
  display: grid;
  gap: 8px;
}
.audio-track {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  align-items: center;
  gap: 14px;
  padding: 11px 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.035);
}
.audio-track__meta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: baseline;
  column-gap: 10px;
  row-gap: 3px;
  min-width: 0;
}
.audio-track__number,
.audio-track__duration {
  color: #f0d9af;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.audio-track h4 {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  min-width: 0;
}
.audio-track p {
  grid-column: 2 / -1;
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
  font-size: 12px;
}
.audio-track__player {
  width: 100%;
  min-width: 0;
  height: 36px;
  accent-color: #d9b77a;
}
@media (max-width: 820px) {
  .online-listening__head {
    display: grid;
    gap: 8px;
  }
  .audio-track {
    grid-template-columns: 1fr;
  }
  .audio-track__player {
    height: 40px;
  }
}
@media (max-width: 520px) {
  .online-listening {
    padding: 14px;
    border-radius: 18px;
  }
  .audio-track {
    padding: 12px;
  }
  .audio-track__meta {
    grid-template-columns: 1fr auto;
  }
  .audio-track__number {
    grid-column: 1 / -1;
  }
  .audio-track h4 {
    font-size: 17px;
  }
  .audio-track p {
    grid-column: 1 / -1;
  }
}
/* End online audio player */

/* Точечная правка: разнести первый экран, не меняя фотографии и слайдер.
   Фотографии остаются теми же и продолжают сменяться, но весь визуальный слой
   слайдера на широких экранах смещён вправо, чтобы текст не закрывал портреты. */
@media (min-width: 841px) {
  .hero-slides {
    background: #07090e;
  }

  .hero-slide {
    inset: 0 -12vw 0 12vw;
  }

  .hero-home h1,
  .hero-lead,
  .hero-actions,
  .hero-caption {
    max-width: min(720px, 54vw);
  }
}

@media (min-width: 1280px) {
  .hero-slide {
    inset: 0 -16vw 0 16vw;
  }

  .hero-home h1,
  .hero-lead,
  .hero-actions,
  .hero-caption {
    max-width: min(700px, 50vw);
  }
}


/* Conversations in Blue score block: original cover preview, clean blue composition */
.score-release {
  grid-template-columns: minmax(190px, 0.38fr) minmax(0, 1.62fr);
  align-items: stretch;
}
.score-release .release-cover--score {
  max-width: 286px;
  justify-self: start;
  padding: 14px;
  border-color: rgba(111, 214, 255, 0.32);
  background:
    radial-gradient(circle at 30% 10%, rgba(76, 213, 255, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(3, 10, 42, 0.94), rgba(7, 14, 35, 0.86));
  box-shadow: 0 30px 70px rgba(0,0,0,0.55), 0 0 42px rgba(43, 172, 255, 0.16);
}
.score-release .release-cover--score img {
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(0,0,0,0.62);
}
.score-release .score-card {
  background:
    radial-gradient(circle at 0% 0%, rgba(81, 204, 255, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(9, 15, 37, 0.96), rgba(12, 18, 33, 0.9));
  border-color: rgba(111, 214, 255, 0.14);
}
.score-release .score-card .small-caps,
.score-release .score-note {
  color: #72d9ff;
}
.score-release .score-card h3 {
  color: #dff8ff;
  text-shadow: 0 0 28px rgba(76, 213, 255, 0.22);
}
.score-note {
  margin-top: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.score-list li {
  display: grid;
  grid-template-columns: minmax(165px, 0.46fr) 1fr;
  gap: 12px;
  align-items: baseline;
}
.score-list li strong {
  min-width: 0;
  color: #f4fbff;
  letter-spacing: 0.02em;
}
.score-list li span {
  color: rgba(232, 244, 255, 0.78);
}
@media (max-width: 1120px) {
  .score-release { grid-template-columns: 1fr; }
  .score-release .release-cover--score { max-width: 260px; }
}
@media (max-width: 680px) {
  .score-list li { grid-template-columns: 1fr; gap: 4px; }
}


/* Final Conversations in Blue portrait block and title fitting */
.score-release {
  grid-template-columns: minmax(240px, 0.48fr) minmax(0, 1.52fr);
  align-items: stretch;
}
.release-cover--art {
  max-width: 320px;
  padding: 14px;
  justify-self: start;
  border-color: rgba(91, 194, 255, 0.3);
  background:
    radial-gradient(circle at 18% 16%, rgba(97, 212, 255, 0.18), transparent 34%),
    linear-gradient(150deg, rgba(4, 12, 42, 0.98), rgba(7, 13, 32, 0.92));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.56), 0 0 48px rgba(58, 172, 255, 0.12);
}
.score-art-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 22px;
  background: #08163d;
  box-shadow: 0 20px 54px rgba(0,0,0,0.56);
}
.score-art-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 18%, rgba(133, 214, 255, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(3, 10, 27, 0.1) 0%, rgba(3, 10, 27, 0.18) 35%, rgba(3, 10, 27, 0.62) 72%, rgba(3, 10, 27, 0.9) 100%);
  z-index: 1;
}
.score-art-card::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 18px;
  border: 1px solid rgba(129, 216, 255, 0.28);
  z-index: 1;
}
.score-art-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4.5;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.score-art-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}
.score-art-kicker {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(125, 217, 255, 0.28);
  background: rgba(5, 13, 38, 0.55);
  color: #9cdfff;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.score-art-overlay h4 {
  max-width: 100%;
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: clamp(20px, 1.45vw, 28px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: #f6fbff;
  text-shadow: 0 10px 34px rgba(0,0,0,0.42);
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}
.score-art-overlay h4 span {
  display: block;
  width: max-content;
  margin-top: 3px;
  color: #77d9ff;
}
.score-list--titles li {
  grid-template-columns: minmax(250px, 0.9fr) minmax(200px, 0.95fr);
  gap: 18px;
  padding: 16px 0;
}
.score-list--titles li span {
  display: block;
  color: #8ddcff;
  line-height: 1.35;
}
.audio-track__number {
  display: none !important;
}
@media (max-width: 1120px) {
  .score-release { grid-template-columns: 1fr; }
  .release-cover--art { max-width: min(100%, 340px); }
}
@media (max-width: 820px) {
  .score-list--titles li { grid-template-columns: 1fr; gap: 6px; }
}
@media (max-width: 680px) {
  .score-art-card { min-height: 420px; }
  .score-art-overlay h4 { font-size: clamp(23px, 8vw, 34px); }
}


/* Final final: Conversations title must stay on one line, with in Blue below */
.score-art-overlay h4 {
  max-width: 100%;
  font-size: clamp(20px, 1.45vw, 28px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}
.score-art-overlay h4 span {
  display: block;
  width: max-content;
  margin-top: 3px;
}
.audio-track__number {
  display: none !important;
}

/* Video materials and refined section links */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}
.video-card {
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
}
.video-frame,
.video-preview-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #05070b;
  box-shadow: var(--shadow);
}
.video-frame::before,
.video-preview-frame::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.video-frame iframe,
.video-preview-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.video-card h3 {
  margin: 14px 0 10px;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.1;
}
.video-card p {
  color: var(--muted);
  line-height: 1.7;
}
.video-playlist-links a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-copy {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 14px;
}
.score-video-cta .panel--copy {
  max-width: none;
}
@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}


/* Minimal home focus: one audio composition and bridge to video */
.home-flower-focus .wrap.split {
  align-items: stretch;
}
.flower-focus-card,
.flower-video-bridge {
  min-height: 100%;
}

.flower-focus-cover {
  margin: 18px auto 0;
  max-width: 620px;
  overflow: visible;
  border: none;
  background: transparent;
  box-shadow: none;
  aspect-ratio: auto;
}
.flower-focus-cover img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.audio-track--featured {
  margin: 28px 0 0;
  background:
    radial-gradient(circle at 0 0, rgba(231, 193, 118, 0.14), transparent 36%),
    rgba(255,255,255,0.045);
}
.flower-video-bridge {
  background:
    radial-gradient(circle at 85% 15%, rgba(231, 193, 118, 0.12), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}

/* Video page mobile refinements: keep the long RU title inside the viewport and
   use the same mobile menu behavior as the rest of the site. */
@media (max-width: 640px) {
  .video-page .page-hero h1 {
    font-size: clamp(34px, 11vw, 52px);
    letter-spacing: -0.04em;
    max-width: 100%;
    overflow-wrap: normal;
  }
}



/* Keep publication metadata directly under the description so the two Alias Press cards align visually, even when one card has an extra purchase button. */
.work-group--featured-editions .card__meta {
  margin-top: 16px;
  padding-top: 0;
}

/* Header consistency and score-card alignment refinements */
.nav-cta {
  white-space: nowrap;
}
.work-group--jazz .card h3 {
  min-height: 2.2em;
}
@media (min-width: 841px) {
  .video-page .site-nav {
    gap: 4px;
  }
  .video-page .nav-link {
    padding-left: 12px;
    padding-right: 12px;
  }
}
