@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&family=Space+Grotesk:wght@400;600&display=swap');

/* =========================
   0) Tokens
========================= */
:root {
  --bg: #0b0d10;
  --text: rgba(255, 255, 255, .90);
  --muted: rgba(255, 255, 255, .62);
  --line: rgba(255, 255, 255, .12);

  --panel: rgba(255, 255, 255, .04);
  --panel2: rgba(255, 255, 255, .06);

  --amber: #f4b454;
  --copper: #d08b4b;
  --amber-dim: rgba(244, 180, 84, .22);

  --shadow: 0 12px 40px rgba(0, 0, 0, .55);

  --radius: 18px;
  --radius-sm: 14px;
  --radius-lg: 26px;

  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  --sans: "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* =========================
   1) Base / Reset
========================= */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background:
    radial-gradient(1000px 520px at 20% 0%, rgba(244, 180, 84, .08), transparent 60%),
    radial-gradient(900px 520px at 80% 10%, rgba(208, 139, 75, .06), transparent 55%),
    radial-gradient(900px 700px at 50% 100%, rgba(255, 255, 255, .04), transparent 55%);
}

a {
  color: inherit;
}

img,
video {
  max-width: 100%;
}

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

.spacer {
  height: 22px;
}

.no-scroll {
  overflow: hidden;
}

/* =========================
   2) Layout
========================= */
.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
}

.main {
  padding-bottom: 60px;
}

.section {
  padding: 40px 0;
}

.section--tight {
  padding: 26px 0;
}

.section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.section__actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* =========================
   3) Header / Nav
========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(11, 13, 16, .62);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.header__line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber-dim), transparent);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand__name {
  letter-spacing: .02em;
  font-weight: 600;
}

.brand__mark {
  width: 34px;
  height: 18px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.reel {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(244, 180, 84, .45);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .04);
  position: relative;
}

.reel::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
}

.nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav__link {
  font-size: 14px;
  text-decoration: none;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav__link:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
}

.nav__link--cta {
  color: rgba(0, 0, 0, .88);
  background: linear-gradient(180deg, rgba(244, 180, 84, .95), rgba(208, 139, 75, .88));
  border-color: rgba(0, 0, 0, .16);
}

.nav__link--cta:hover {
  filter: brightness(1.05);
}

.lang__link {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 7px 10px;
  border-radius: 999px;
}

.lang__link:hover {
  color: var(--text);
  border-color: rgba(244, 180, 84, .35);
}

/* =========================
   4) Typography
========================= */
.h1 {
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.02;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.h2 {
  font-size: 20px;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.lead {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.55;
}

.caption {
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
}

.prose {
  color: rgba(255, 255, 255, .82);
  line-height: 1.7;
  font-size: 15px;
}

.prose em {
  color: rgba(255, 255, 255, .92);
}

.prose a {
  color: var(--amber);
}

/* =========================
   5) Buttons / Links
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--text);
  background: rgba(255, 255, 255, .03);
}

.btn:hover {
  border-color: rgba(244, 180, 84, .28);
  background: rgba(255, 255, 255, .05);
}

.btn--primary {
  color: rgba(0, 0, 0, .90);
  background: linear-gradient(180deg, rgba(244, 180, 84, .96), rgba(208, 139, 75, .90));
  border-color: rgba(0, 0, 0, .18);
}

.btn--primary:hover {
  filter: brightness(1.05);
}

.btn--ghost {
  background: transparent;
}

.btn--small {
  padding: 8px 12px;
  font-size: 13px;
}

.section__link {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px dashed rgba(244, 180, 84, .28);
}

.section__link:hover {
  color: var(--text);
  border-bottom-color: rgba(244, 180, 84, .55);
}

/* =========================
   6) Cards / Lists / Grids
========================= */
.grid {
  display: grid;
  gap: 14px;
}

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

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

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

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  overflow: hidden;
}

.card__body {
  padding: 14px;
}

.card__title {
  font-weight: 600;
  letter-spacing: -.01em;
}

.card__meta {
  margin-top: 4px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
}

.card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 12px;
}

.card__links a {
  color: rgba(244, 180, 84, .88);
  text-decoration: none;
  border-bottom: 1px dashed rgba(244, 180, 84, .28);
}

.card__links a:hover {
  color: rgba(244, 180, 84, 1);
  border-bottom-color: rgba(244, 180, 84, .55);
}

/* Release card layout */
.card--release {
  display: grid;
  grid-template-columns: 118px 1fr;
}

.card__cover {
  width: 100%;
  height: 118px;
  background: rgba(0, 0, 0, .18);
}

.cover-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(244, 180, 84, .12), rgba(255, 255, 255, .03));
}

/* List for dates */
.list {
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--radius);
  overflow: hidden;
}

.list__row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, .02);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.list__row:last-child {
  border-bottom: none;
}

.list__left--with-media {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list__date {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(244, 180, 84, .82);
}

.list__place {
  margin-top: 3px;
  color: rgba(255, 255, 255, .84);
}

.event-text {
  min-width: 0;
}

.event-title {
  margin-top: 6px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.thumb {
  width: 148px;
  height: 148px;
  flex: 0 0 148px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
}

/* =========================
   7) Hero / Frame / Embed
========================= */
.hero {
  padding: 44px 0 26px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: start;
}

.hero__tagline {
  font-family: var(--mono);
  color: rgba(244, 180, 84, .86);
  font-size: 13px;
  margin-bottom: 12px;
}

.hero__about {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

.hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(244, 180, 84, .18);
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
  box-shadow: var(--shadow);
  position: relative;
}

.frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(244, 180, 84, .08), transparent);
  pointer-events: none;
  opacity: .65;
}

.embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.placeholder {
  padding: 18px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
}

/* =========================
   8) Forms / Notices
========================= */
.form {
  display: grid;
  gap: 12px;
}

.grid-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field__label {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
}

.input,
.textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .03);
  color: var(--text);
  outline: none;
}

.input:focus,
.textarea:focus {
  border-color: rgba(244, 180, 84, .35);
}

.input--error,
.textarea--error {
  border-color: rgba(255, 120, 120, .55);
  box-shadow: 0 0 0 3px rgba(255, 120, 120, .10);
}

.field__hint {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
}

.field__hint--error {
  color: rgba(255, 160, 160, .9);
}

.notice {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(244, 180, 84, .22);
  background: rgba(244, 180, 84, .06);
  font-family: var(--mono);
  font-size: 12px;
}

.notice--ok {
  border-color: rgba(120, 255, 178, .25);
  background: rgba(120, 255, 178, .08);
}

/* honeypot */
.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* =========================
   9) Footer
========================= */
.footer {
  border-top: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .18);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  flex-wrap: wrap;
}

.footer__title {
  font-weight: 600;
}

.footer__small {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

.footer__right {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__link {
  color: var(--muted);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 12px;
}

.footer__link:hover {
  color: var(--text);
}

/* =========================
   10) Responsive
========================= */
@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

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

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

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

  .card--release {
    grid-template-columns: 108px 1fr;
  }

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

/* Mobile nav */
.nav-toggle {
  display: none;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .03);
  padding: 8px 10px;
  border-radius: 999px;
  cursor: pointer;
}

.nav-panel {
  position: fixed;
  inset: 0;
  z-index: 1001;
}

.nav-panel__backdrop {
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(10px);
}

.nav-panel__sheet {
  background: rgba(10, 12, 15, .98);
  border-left: 1px solid rgba(244, 180, 84, .18);
  box-shadow: 0 22px 90px rgba(0, 0, 0, .75);
}

.nav-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.nav-panel__title {
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-panel__close {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
}

.nav-panel__links {
  padding: 10px 10px 18px;
  display: grid;
  gap: 8px;
}

.nav-panel__link {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .05);
}

.nav-panel__link:hover {
  border-color: rgba(244, 180, 84, .28);
}

.nav-panel__link--cta {
  color: rgba(0, 0, 0, .88);
  background: linear-gradient(180deg, rgba(244, 180, 84, .96), rgba(208, 139, 75, .90));
  border-color: rgba(0, 0, 0, .18);
}

.nav-panel__bottom {
  margin-top: auto;
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, .10);
}

.nav-panel__lang {
  display: inline-flex;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 8px 10px;
  border-radius: 999px;
}

/* responsive switch */
@media (max-width: 820px) {
  .nav--desktop {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

.brand__logo {
  height: 22px;
  /* подгони */
  width: auto;
  display: block;
}

@media (max-width: 820px) {
  .brand__logo {
    height: 20px;
  }
}
