:root {
  --bg:      #060708;
  --surface: #0E0F11;
  --card:    #161618;
  --border:  #1E1E22;
  --gold:    #D4A62A;
  --gold-dark: #B8871E;
  --white:   #FFFFFF;
  --text:    #E8E8E8;
  --muted:   #7A7A7E;
  --nav-h:   5.6rem;
  --px:      clamp(2rem, 5vw, 8rem);
  --max-w:   160rem;
  --font-heading: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', Arial, sans-serif;
}

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

html {
  font-size: 10px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--surface);
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 1rem; height: 1rem; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border: 3px solid var(--surface);
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }
::-webkit-scrollbar-corner { background: var(--surface); }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  display: block;
  max-width: 100%;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
svg { display: block; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

/* ── Typography ── */
.heading-xl {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(5rem, 11vw, 14rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
}
.heading-lg {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(3.2rem, 5.5vw, 6.4rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}
.heading-md {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2.4rem, 3.5vw, 4rem);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--white);
}
.label {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.body-text {
  font-size: 1.5rem;
  line-height: 1.75;
  color: var(--muted);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.4rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--bg); }
.btn-sm { padding: 0.8rem 1.6rem; font-size: 1.1rem; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: var(--bg);
  display: flex;
  align-items: center;
  padding: 0 var(--px);
  gap: 3.2rem;
  transition: border-bottom 0.3s;
}
.navbar.scrolled { border-bottom: 1px solid var(--border); }

.navbar__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  flex-shrink: 0;
}
.navbar__logo .accent { color: var(--gold); }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  margin: 0 auto;
}
.navbar__nav a {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
}
.navbar__nav a:hover,
.navbar__nav a.active { opacity: 1; color: var(--gold); }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-shrink: 0;
}
.navbar__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  opacity: 0.6;
  transition: opacity 0.2s;
  padding: 0.4rem;
}
.navbar__icon-btn:hover { opacity: 1; }

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.4rem;
  margin-left: auto;
}
.navbar__burger span {
  display: block;
  width: 2.2rem;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.navbar__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger.open span:nth-child(2) { opacity: 0; }
.navbar__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  max-height: calc(100vh - var(--nav-h));
  background: var(--bg);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.4);
  z-index: 999;
  padding: 1.5rem var(--px);
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ── Footer ── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 6rem var(--px) 3.2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer__col-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__links a,
.footer__links button.js-contact-trigger {
  font-size: 1.4rem;
  color: var(--muted);
  text-align: left;
  transition: color 0.2s;
}
.footer__links a:hover,
.footer__links button.js-contact-trigger:hover { color: var(--gold); }
.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.footer__copy { font-size: 1.2rem; color: var(--muted); }
.footer__legal { display: flex; gap: 2.4rem; }
.footer__legal a {
  font-size: 1.2rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer__legal a:hover { color: var(--text); }

/* ── Contact modal ── */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.contact-modal.open { opacity: 1; pointer-events: auto; }
.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 7, 8, 0.85);
}
.contact-modal__card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 4rem 3.2rem 3.2rem;
  width: min(44rem, 90vw);
  transform: translateY(1.6rem);
  transition: transform 0.25s ease;
}
.contact-modal.open .contact-modal__card { transform: translateY(0); }
.contact-modal__close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 3.6rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--muted);
  transition: color 0.2s;
}
.contact-modal__close:hover { color: var(--white); }
.contact-modal__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.8rem;
  text-transform: uppercase;
  color: var(--white);
  margin: 0.8rem 0 2.4rem;
}
.contact-modal__options {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-modal__option {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 1.6rem 2rem;
  border: 1px solid var(--border);
  color: var(--text);
  transition: border-color 0.2s, color 0.2s;
}
.contact-modal__option:hover { border-color: var(--gold); color: var(--gold); }
.contact-modal__option-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border: 1px solid var(--border);
  flex-shrink: 0;
  color: inherit;
}
.contact-modal__option-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Poster lightbox ── */
.js-lightbox { cursor: zoom-in; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  padding: 4rem;
  transition: opacity 0.25s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 7, 8, 0.92);
}
.lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
}
.lightbox__image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}
.lightbox__video {
  max-width: 90vw;
  max-height: 90vh;
  display: none;
}
.lightbox.lightbox--video .lightbox__image { display: none; }
.lightbox.lightbox--video .lightbox__video { display: block; }
.lightbox__close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--white);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
}
.lightbox__close:hover { color: var(--gold); border-color: var(--gold); }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(2.4rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Utilities ── */
.section-pad { padding: 8rem 0; }

/* ── Responsive ── */
@media (max-width: 767px) {
  .navbar__nav,
  .navbar__actions .btn,
  .navbar__icon-btn { display: none; }
  .navbar__burger { display: flex; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 3.2rem; }
}
