/* ---------- Reset & base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #000;
  --fg: #f5f5f5;
  --muted: #8a8a8a;
  --line: rgba(255,255,255,.12);
  --card: #0a0a0a;
  --ff-head: 'Space Grotesk', sans-serif;
  --ff-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
svg { width: 20px; height: 20px; fill: currentColor; }

.noise {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.section {
  padding: 8rem 6vw;
  max-width: 1400px;
  margin: 0 auto;
}

.section-head { max-width: 640px; margin-bottom: 4rem; }

.section-kicker {
  font-family: var(--ff-head);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .75rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.section h2 {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.section-sub { color: var(--muted); font-size: 1.05rem; max-width: 520px; }
.section-cta { text-align: center; margin-top: 4rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .95rem 2.2rem;
  font-family: var(--ff-head);
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: all .25s ease;
  cursor: pointer;
}

.btn-primary { background: var(--fg); color: #000; }
.btn-primary:hover { background: transparent; color: var(--fg); border-color: var(--fg); }

.btn-outline { border-color: var(--line); color: var(--fg); }
.btn-outline:hover { background: var(--fg); color: #000; border-color: var(--fg); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem 6vw;
  background: linear-gradient(to bottom, rgba(0,0,0,.85), transparent);
  backdrop-filter: blur(2px);
}

.brand-logo { height: 22px; width: auto; filter: brightness(0) invert(1); }

.main-nav { display: flex; gap: 2.4rem; }
.main-nav a {
  font-family: var(--ff-head);
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--fg);
  opacity: .8;
  position: relative;
  transition: opacity .2s;
}
.main-nav a:hover { opacity: 1; }
.main-nav a::after {
  content: '';
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--fg);
  transition: width .25s ease;
}
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 1.6rem; }

.lang-toggle {
  background: none; border: none; color: var(--fg);
  font-family: var(--ff-head);
  font-size: .8rem; letter-spacing: .05em;
  cursor: pointer;
  display: flex; align-items: center; gap: .4rem;
}
.lang-option { opacity: .4; transition: opacity .2s; }
.lang-option.active { opacity: 1; }
.lang-sep { opacity: .3; }

.menu-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px;
}
.menu-toggle span { width: 22px; height: 1.5px; background: var(--fg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-media {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: grayscale(1) contrast(1.1);
}

.hero-fade {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 40%;
  background: linear-gradient(to top, #000 0%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  background: #000;
  padding: 2.6rem 6vw 3.4rem;
  width: 100%;
}

.eyebrow {
  font-family: var(--ff-head);
  letter-spacing: .3em;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(2.5rem, 8vw, 6rem);
  letter-spacing: -0.03em;
  line-height: .95;
  margin-bottom: 1.4rem;
}

.hero-genres {
  color: var(--muted);
  font-size: .95rem;
  letter-spacing: .02em;
  max-width: 560px;
  margin-bottom: 2.4rem;
}

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

@media (max-height: 820px) {
  .hero-title { font-size: clamp(2.2rem, 6vw, 4.4rem); margin-bottom: 1rem; }
  .hero-genres { margin-bottom: 1.6rem; }
  .hero-content { padding-top: 1.8rem; padding-bottom: 2.4rem; }
}

.scroll-cue {
  position: absolute;
  bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 22px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 100px;
}
.scroll-cue span {
  position: absolute; top: 6px; left: 50%;
  width: 3px; height: 6px;
  background: var(--fg);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollcue 1.6s infinite;
}
@keyframes scrollcue {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 18px; }
}

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 1.3rem 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 1.2rem;
  animation: marquee 30s linear infinite;
  font-family: var(--ff-head);
  font-size: .85rem;
  letter-spacing: .15em;
  color: var(--muted);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Video grid ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  background: var(--card);
  cursor: pointer;
}

.video-thumb { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; filter: brightness(.65); }
.video-frame:hover .video-thumb { transform: scale(1.05); }

.play-btn {
  position: absolute; inset: 0; margin: auto;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform .2s ease;
}
.video-frame:hover .play-btn { transform: scale(1.1); }
.play-btn svg { fill: #000; width: 20px; height: 20px; margin-left: 3px; }

.video-card h3 {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  margin-top: 1.2rem;
  margin-bottom: .3rem;
}
.video-meta { color: var(--muted); font-size: .85rem; }

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

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-img { border-radius: 10px; object-fit: cover; height: 100%; }
.about-img-1 { margin-top: 3rem; }

.about-text p {
  color: var(--muted);
  margin-bottom: 1.2rem;
  max-width: 480px;
}

.social-row { display: flex; gap: 1.4rem; margin-top: 2rem; }
.social-row a {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s ease;
}
.social-row a:hover { background: var(--fg); color: #000; border-color: var(--fg); }
.social-row svg { width: 17px; height: 17px; }

/* ---------- Agenda ---------- */
.agenda-list { border-top: 1px solid var(--line); }
.agenda-item {
  display: flex; align-items: center; gap: 2.4rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
}
.agenda-date {
  display: flex; flex-direction: column; align-items: center;
  width: 64px; flex-shrink: 0;
}
.agenda-day { font-family: var(--ff-head); font-size: 1.8rem; font-weight: 600; }
.agenda-month { font-size: .7rem; letter-spacing: .1em; color: var(--muted); }
.agenda-info { flex: 1; }
.agenda-info h3 { font-family: var(--ff-head); font-size: 1.1rem; margin-bottom: .2rem; }
.agenda-info p { color: var(--muted); font-size: .9rem; }
.agenda-link {
  font-family: var(--ff-head);
  font-size: .82rem; letter-spacing: .05em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  white-space: nowrap;
}
.agenda-empty-note {
  padding: 2rem 0; text-align: center;
  color: var(--muted); font-size: .85rem; font-style: italic;
}

/* ---------- Press ---------- */
.press-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--fg);
  font-family: var(--ff-body);
  font-size: 1rem;
  padding: .8rem .2rem;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted); }
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--fg); }

.contact-form button { align-self: flex-start; margin-top: .8rem; border: none; }

.contact-direct {
  border-left: 1px solid var(--line);
  padding-left: 3rem;
}
.contact-label {
  font-family: var(--ff-head);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .75rem;
  color: var(--muted);
  margin-bottom: .8rem;
}
.contact-email {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  display: inline-block;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
}
.contact-phone {
  font-family: var(--ff-body);
  font-size: .95rem;
  color: var(--muted);
  display: block;
  margin-top: .8rem;
}
.contact-phone:hover { color: var(--fg); }
.contact-note { color: var(--muted); font-size: .85rem; margin-top: 1rem; }

/* ---------- Footer ---------- */
.site-footer {
  display: flex; flex-direction: column; align-items: center; gap: 1.6rem;
  padding: 4rem 6vw 3rem;
  border-top: 1px solid var(--line);
  text-align: center;
}
.footer-logo { height: 16px; filter: brightness(0) invert(1); opacity: .7; }
.footer-social { display: flex; gap: 1.6rem; }
.footer-social a {
  font-family: var(--ff-head);
  font-size: .75rem;
  letter-spacing: .1em;
  color: var(--muted);
}
.footer-social a:hover { color: var(--fg); }
.footer-copy { color: var(--muted); font-size: .78rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: 70vw; height: 100vh;
    background: #050505;
    padding: 6rem 2rem;
    gap: 2rem;
    z-index: 90;
    border-left: 1px solid var(--line);
  }

  .video-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img-1 { margin-top: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-direct { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 5rem 6vw; }
  .agenda-item { gap: 1.2rem; }
}
