:root {
  --bg: #0a0a0a;
  --bg-elevated: rgba(18, 18, 18, 0.72);
  --gold: #d4af37;
  --gold-soft: #e8c547;
  --gold-dim: #c9a227;
  --text: #ffffff;
  --text-muted: #c8c8c8;
  --border: rgba(212, 175, 55, 0.28);
  --green: #2ea44f;
  --header-h: 88px;
  --radius: 16px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --font: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #111;
  padding: 0.5rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.72) 0%, rgba(8, 8, 8, 0.82) 45%, rgba(8, 8, 8, 0.94) 100%),
    url("../assets/hero-bg.jpg") center / cover no-repeat fixed;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(10, 10, 10, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand img {
  width: 46px;
  height: 46px;
}

.brand-name {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 1.35rem;
}

.nav a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #ececec;
  padding-bottom: 0.15rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-inline {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.78rem;
}

.contact-inline a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #f3f3f3;
  transition: color 0.2s ease;
}

.contact-inline a:hover,
.contact-inline a:focus-visible {
  color: var(--gold);
}

.contact-inline svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  flex-shrink: 0;
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold-dim);
  color: #111;
  border: 0;
  border-radius: 6px;
  padding: 0.42rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.lang .flag {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  overflow: hidden;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  border-radius: 8px;
  padding: 0;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  margin: 0 auto;
  position: relative;
  transition: transform 0.2s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.main {
  flex: 1;
  display: flex;
  align-items: center;
}

.hero {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  font-weight: 800;
}

.hero h1 .gold {
  color: var(--gold);
}

.rule {
  width: 72px;
  height: 3px;
  background: var(--gold);
  margin: 1.15rem 0 1rem;
  border: 0;
}

.coming-soon {
  margin: 0 0 0.7rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.lede {
  margin: 0;
  max-width: 28rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.event-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.event-label {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.event-media {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.event-media img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center top;
}

.event-arrow {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #111;
  border-radius: 4px;
  font-size: 1.1rem;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.event-arrow:hover,
.event-arrow:focus-visible {
  filter: brightness(1.12);
  transform: translateX(2px);
}

.event-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.85rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: 1px solid var(--green);
  color: var(--green);
  border-radius: 6px;
  padding: 0.18rem 0.5rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.event-title {
  margin: 0.7rem 0 0.85rem;
  font-size: 1.18rem;
  line-height: 1.3;
  font-weight: 800;
}

.event-rows {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
}

.event-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.55rem;
  color: #d0d0d0;
  font-size: 0.9rem;
}

.event-row svg {
  width: 16px;
  height: 16px;
  margin-top: 0.15rem;
  fill: var(--gold);
}

.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--gold);
  color: #141414;
  font-weight: 800;
  letter-spacing: 0.12em;
  border-radius: 8px;
  padding: 0.85rem 1rem;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.cta:hover,
.cta:focus-visible {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.footer {
  border-top: 1px solid var(--border);
  background: rgba(8, 8, 8, 0.88);
  padding: 1.4rem 1.25rem 1.1rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.follow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.social {
  display: flex;
  gap: 0.45rem;
}

.social a {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  transition: background 0.2s ease, color 0.2s ease;
}

.social a:hover,
.social a:focus-visible {
  background: var(--gold);
  color: #111;
}

.social svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.footer-brand img {
  width: 28px;
  height: 28px;
}

.footer-brand span {
  font-weight: 800;
  letter-spacing: 0.16em;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  font-size: 0.82rem;
}

.footer-contact a {
  color: #ececec;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--gold);
}

.copyright {
  max-width: 1280px;
  margin: 1rem auto 0;
  text-align: center;
  color: #8d8d8d;
  font-size: 0.78rem;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav {
    display: none;
  }

  .contact-inline {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .header-right {
    justify-self: end;
  }

  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(12, 12, 12, 0.97);
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.9rem;
    border-bottom: 1px solid var(--border);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 2.4rem;
    gap: 2rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .follow {
    flex-direction: column;
  }

  .footer-contact {
    align-items: center;
  }
}

@media (max-width: 560px) {
  .lang span:last-of-type {
    display: none;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .event-media img {
    height: 170px;
  }
}
