/* ============================================
   HOMEPAGE STYLES
   ============================================ */

/* ---- HERO — "We Are WarriorsGate" Paramount-style ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background: var(--black);
}

/* Giant "WE ARE" background text */
.hero-bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  pointer-events: none;
}
.hero-bg-text span {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(90px, 22vw, 340px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--gold);
  white-space: nowrap;
}

/* Slideshow images, cropped to bottom like Paramount cast photos */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  opacity: 0;
  z-index: 1;
  transform: scale(1.15);
  transition: opacity 0.4s ease-in-out, transform 5s ease-out;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide.zoomed { transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: opacity 0.3s ease-in-out; transform: none !important; }
}

/* Vignette to keep text readable */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 70% 60% at 50% 38%, rgba(10,10,10,0.55) 0%, transparent 65%),
    linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.2) 35%, rgba(10,10,10,0.85) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: heroFadeUp 1.2s ease forwards;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-condensed);
  font-size: clamp(12px, 1.6vw, 16px);
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--white);
}

.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
.hero-scroll span {
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
}

.hero-pause-toggle {
  position: absolute;
  bottom: 36px;
  right: 36px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(10,10,10,0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.hero-pause-toggle:hover { border-color: rgba(255,255,255,0.7); background: rgba(10,10,10,0.65); }
.hero-pause-toggle .pause-label {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.hero-pause-toggle::before {
  content: '';
  width: 12px;
  height: 12px;
  background-color: currentColor;
  color: var(--white);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='6' y='4' width='4' height='16'/%3E%3Crect x='14' y='4' width='4' height='16'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='6' y='4' width='4' height='16'/%3E%3Crect x='14' y='4' width='4' height='16'/%3E%3C/svg%3E") center / contain no-repeat;
}
.hero-pause-toggle[aria-pressed="true"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolygon points='6,4 20,12 6,20'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolygon points='6,4 20,12 6,20'/%3E%3C/svg%3E");
}

@media (max-width: 700px) {
  .hero-slide { background-size: cover; opacity: 0.35; }
  .hero-slide.active { opacity: 0.45; }
}

/* ---- TICKER ---- */
.ticker {
  background: var(--white);
  overflow: hidden;
  height: 80px;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  align-items: center;
  animation: ticker 36s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker:hover .ticker-track,
.ticker:focus-within .ticker-track {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 100%;
  padding: 14px 40px;
}
.ticker-item img {
  height: 70%;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
/* Mono white-on-transparent division logos need inverting for white ticker bg */
.ticker-item img.mono {
  filter: invert(1);
}
/* Logos with their own dark background tile get a rounded frame */
.ticker-item img.framed {
  height: 90%;
  border-radius: 8px;
}

/* ============================================
   OUR COMPANY + BRAND SLIDER
   ============================================ */
.company {
  background: var(--off-black);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.company-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.company-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 40px;
}

.stat {
  background: var(--dark);
  padding: 24px;
  border: 0.5px solid var(--border);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-condensed);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .company-inner { grid-template-columns: 1fr; gap: 48px; }
  .company-stats { gap: 1px; margin-top: 28px; }
  .stat { padding: 14px 16px; }
  .stat-num { font-size: 24px; margin-bottom: 2px; }
  .stat-label { font-size: 10px; }
}

/* Brand slider */
.brand-slider-wrap {
  margin-top: 12px;
}

.brand-slider-label {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.brand-slider {
  position: relative;
  overflow: hidden;
  border: 0.5px solid var(--border);
  background: var(--dark);
  padding: 56px 40px;
}

.brand-slider-track {
  display: flex;
  align-items: center;
  gap: 100px;
  animation: brandSlide 32s linear infinite;
  width: max-content;
}
.brand-slider:hover .brand-slider-track,
.brand-slider:focus-within .brand-slider-track {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .brand-slider-track { animation: none; }
}

@keyframes brandSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.brand-slide-item {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.3s, transform 0.3s;
}
.brand-slide-item:hover { opacity: 1; transform: scale(1.05); }

.brand-slide-item img {
  height: 100%;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}

/* Rydrea Walker Studios is black-on-transparent; invert for dark bg */
.brand-slide-item.invert img { filter: invert(1) brightness(1.2); }

@media (max-width: 860px) {
  .brand-slider { padding: 36px 24px; }
  .brand-slide-item { height: 56px; }
  .brand-slide-item img { max-width: 160px; }
  .brand-slider-track { gap: 56px; }
}

/* ============================================
   FILMOGRAPHY & EVENTS
   ============================================ */
.filmography { background: var(--black); }

.film-tabs {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  border-bottom: 0.5px solid var(--border);
}

.film-tab {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 16px;
  position: relative;
  cursor: default;
}
.film-tab.active { color: var(--white); }
.film-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}

.film-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.film-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 2/3;
  background: var(--dark);
  border: 0.5px solid var(--border);
  cursor: pointer;
}

.film-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.film-card:hover img { transform: scale(1.05); }

.film-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}
.film-card:hover .film-card-overlay { opacity: 1; }

.film-card-overlay h4 {
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}
.film-card-overlay span {
  display: block;
  font-family: var(--font-condensed);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-top: 4px;
}

@media (max-width: 1024px) {
  .film-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .film-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Events strip */
.events-strip {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2px;
  border: 0.5px solid var(--border);
}

.event-feature {
  position: relative;
  min-height: 380px;
  background: var(--dark);
  overflow: hidden;
}
.event-feature img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; opacity: 0.55; }

.event-feature-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent 60%);
}

.event-tag {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 4px 12px;
  margin-bottom: 12px;
  width: fit-content;
}

.event-feature-content h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 8px;
}

.event-feature-content p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 440px;
  line-height: 1.6;
}

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

.event-list-item {
  flex: 1;
  padding: 28px 32px;
  background: var(--dark);
  border-bottom: 0.5px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background 0.2s;
}
.event-list-item:last-child { border-bottom: none; }
.event-list-item:hover { background: rgba(255,255,255,0.04); }

.event-list-item .event-date {
  font-family: var(--font-condensed);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.event-list-item h4 {
  font-family: var(--font-condensed);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.event-list-item p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .events-strip { grid-template-columns: 1fr; }
}

/* ============================================
   MISSION BAND
   ============================================ */
.mission-band { background: var(--white); padding: 90px 0; }
.mission-band .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.mission-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--black);
}

.mission-body p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(0,0,0,0.7);
  margin-bottom: 16px;
}
.mission-body p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .mission-band .container { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================
   NEWS
   ============================================ */
.news { background: var(--off-black); }

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}

.news-card {
  background: var(--dark);
  border: 0.5px solid var(--border);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}
.news-card:hover { border-color: rgba(255,255,255,0.3); }

.news-date {
  font-family: var(--font-condensed);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.news-headline {
  font-family: var(--font-condensed);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 12px;
  flex: 1;
  text-transform: uppercase;
}

.news-excerpt {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.news-link {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: border-color 0.2s;
}
.news-link:hover { border-color: var(--gold); }

@media (max-width: 900px) {
  .news-grid { grid-template-columns: 1fr; }
}

/* ============================================
   WORK WITH US
   ============================================ */
.work { background: var(--black); text-align: center; padding: 130px 0; }

.work-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 100px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 24px;
}
.work-title .outline { -webkit-text-stroke: 1.5px rgba(255,255,255,0.25); color: transparent; }

.work-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 40px;
}

.work-cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   INVESTORS BAND
   ============================================ */
.investors {
  background: var(--dark);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 64px 0;
}
.investors .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.investors-text h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.investors-text p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 480px;
}
