:root {
  --bg: #07111d;
  --bg-2: #0d1b2a;
  --surface: #12263a;
  --surface-2: #1a3550;
  --text: #f5f1e6;
  --text-muted: #c9d4e0;
  --gold: #c9a227;
  --gold-soft: rgba(201, 162, 39, 0.18);
  --line: rgba(255, 255, 255, 0.12);
  --radius: 16px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font: 16px/1.6 "Avenir Next", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 17, 29, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 38px;
  height: 38px;
  color: var(--gold);
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-link:hover {
  color: var(--gold);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.55rem;
  cursor: pointer;
}

.nav-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px 0;
  background: var(--text);
  border-radius: 999px;
}

.hero {
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 75% 30%, rgba(201, 162, 39, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(7, 17, 29, 0.1), rgba(7, 17, 29, 0.92) 55%, var(--bg));
  border-bottom: 1px solid var(--line);
}

.hero-content {
  max-width: 760px;
  padding: clamp(4rem, 10vh, 7rem) 0;
}

.hero-kicker {
  margin: 0 0 1rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-size: clamp(4rem, 12vw, 8.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  margin: 1.1rem 0 0;
  color: var(--text-muted);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  letter-spacing: 0.08em;
}

.hero-copy {
  max-width: 620px;
  margin: 1.5rem 0 2.2rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #081019;
}

.btn.primary:hover {
  background: #d9b83d;
}

.btn.secondary {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.btn.secondary:hover {
  background: var(--gold-soft);
  color: var(--text);
}

.section {
  padding: clamp(4.5rem, 10vh, 7.5rem) 0;
}

.section-header {
  max-width: 720px;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.05;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
}

.specs-grid,
.cards,
.events-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

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

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  color: var(--gold);
}

.event-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 6px);
  margin-bottom: 1.1rem;
}

.event-body h3 {
  margin: 0 0 0.5rem;
}

.event-body p {
  margin: 0;
  color: var(--text-muted);
}

.event-card {
  display: flex;
  flex-direction: column;
}

.spec-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}

.spec-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.spec-list span {
  color: var(--text-muted);
}

.spec-list strong {
  text-align: right;
  font-weight: 650;
}

.timeline {
  display: grid;
  gap: 1.25rem;
}

.timeline-item {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 3px;
  border-radius: 999px;
  background: var(--gold);
}

.timeline time {
  display: inline-flex;
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.timeline h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.timeline p {
  margin: 0;
  color: var(--text-muted);
}

.film-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.film-player {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.film-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.film-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.film-info h3 {
  margin: 0;
  font-size: 1.6rem;
}

.film-info p {
  margin: 0;
  color: var(--text-muted);
}

.film-info a {
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
}

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.75rem 1rem;
  color: var(--text-muted);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.55));
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}

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

.contact-card {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.contact-card h3 {
  margin: 0 0 1rem;
  color: var(--gold);
}

.contact-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
}

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

.site-footer .container {
  display: grid;
  gap: 0.5rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: var(--text-muted);
}

.footer-meta {
  font-size: 0.95rem;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand img {
  width: 32px;
  height: 32px;
  color: var(--gold);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-copy {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 900px) {
  .specs-grid,
  .cards,
  .events-grid,
  .gallery-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .nav-list {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0.9rem;
    padding: 1rem 0 1.25rem;
    border-top: 1px solid var(--line);
    background: var(--bg);
  }

  .nav-list.open {
    display: flex;
  }

  .hero {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
