:root {
  color-scheme: dark;
  font-family: "Segoe UI", "Microsoft YaHei", sans-serif;
  color: #f4f2ed;
  background: #11110f;
}

* {
  box-sizing: border-box;
}

html {
  background: #11110f;
}

body {
  min-width: 320px;
  margin: 0;
  background: #11110f;
}

.site-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid #34332f;
}

.site-header p,
.section-label {
  margin: 0 0 4px;
  color: #b7a584;
  font-size: 11px;
  font-weight: 700;
}

.site-header h1 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.site-header > span {
  color: #aaa69d;
  font-size: 12px;
}

.player-section {
  width: 100%;
  min-height: calc(100svh - 78px);
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 42px);
  background: #080808;
}

video {
  display: block;
  width: min(100%, 1600px);
  max-height: calc(100svh - 108px);
  aspect-ratio: 16 / 9;
  background: #050505;
  box-shadow: 0 20px 60px rgb(0 0 0 / 38%);
}

.details-section {
  padding: clamp(48px, 7vw, 96px) clamp(18px, 4vw, 56px);
  border-top: 1px solid #292824;
}

.description {
  width: min(720px, 100%);
  margin-bottom: 36px;
}

.description h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 550;
}

.description > p:last-child {
  margin: 0;
  color: #bdb9b0;
  font-size: 15px;
  line-height: 1.75;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 26px);
}

figure {
  min-width: 0;
  margin: 0;
}

figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #24231f;
}

figcaption {
  padding-top: 10px;
  color: #9e9a91;
  font-size: 12px;
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
  }

  .site-header > span {
    display: none;
  }

  .player-section {
    min-height: auto;
    padding: 10px 0;
  }

  video {
    max-height: none;
  }

  .gallery {
    grid-template-columns: 1fr;
  }
}
