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

:root {
  --bg: #0e0e10;
  --bg-alt: #161618;
  --text: #f5f5f3;
  --muted: #a3a3a8;
  --accent: #e8b14e;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

.section {
  padding: 80px 6vw;
}

.section.alt { background: var(--bg-alt); }

.section h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.section-sub {
  color: var(--muted);
  margin-bottom: 40px;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: right center;
  object-fit: cover;
  opacity: 1;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--bg) 0%,
    rgba(14, 14, 16, 0.92) 30%,
    rgba(14, 14, 16, 0.55) 55%,
    rgba(14, 14, 16, 0.15) 80%,
    rgba(14, 14, 16, 0) 100%
  );
}

.nav {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 6vw;
}

.nav-logo {
  height: 60px;
  width: auto;
  max-width: 200px;
  cursor: pointer;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 28px;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 6vw 80px;
  max-width: 800px;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
}

.tagline {
  font-size: 1.3rem;
  color: var(--muted);
  margin-top: 18px;
  margin-bottom: 32px;
}

.cta {
  display: inline-block;
  color: var(--bg);
  background: var(--accent);
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s;
}

.cta:hover { transform: translateY(-2px); }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.filter-btn {
  background: transparent;
  border: 1px solid #333;
  color: var(--muted);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--text);
}

.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  font-weight: 600;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 230px));
  justify-content: center;
  gap: 44px 36px;
  max-height: 1400px;
  overflow-y: auto;
  padding: 4px 6px 16px;
}

@media (max-width: 1100px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.video-card {
  position: relative;
  background: var(--bg-alt);
  border: 3px solid #2a2a2e;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
  padding: 8px;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
  display: block;
  pointer-events: none;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 1;
  transition: opacity 0.2s;
  pointer-events: none;
}

.video-card:hover .play-icon {
  opacity: 0;
}

.video-caption {
  padding: 14px 16px;
}

.brand-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--accent);
  margin-bottom: 4px;
}

.video-caption p {
  color: var(--text);
  font-size: 0.95rem;
}

.brand-carousel {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  padding: 30px 0;
  background: var(--bg-alt);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

.brand-carousel::-webkit-scrollbar {
  height: 6px;
}

.brand-carousel::-webkit-scrollbar-track {
  background: #161618;
  border-radius: 3px;
}

.brand-carousel::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

.carousel-track {
  display: flex;
  gap: 60px;
  align-items: center;
  padding: 0 80px;
  min-width: min-content;
  justify-content: flex-start;
}

.carousel-track img {
  height: 120px;
  width: auto;
  max-width: 180px;
  opacity: 0.7;
  transition: all 0.3s ease;
  flex-shrink: 0;
  cursor: pointer;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  object-fit: contain;
}

.carousel-track img:hover {
  opacity: 1;
  filter: drop-shadow(0 4px 12px rgba(232, 177, 78, 0.4));
  transform: translateY(-4px);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.fact-card {
  background: var(--bg-alt);
  border-radius: 14px;
  padding: 28px;
  border-left: 3px solid var(--accent);
}

.fact-number {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.fact-desc {
  color: var(--muted);
}

.footer {
  text-align: center;
}

.footer p {
  color: var(--muted);
  margin: 12px 0 28px;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox video {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1001;
}
