@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500&display=swap');

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray: #777777;
  --light-gray: #cccccc;
  --border: rgba(255, 255, 255, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.97), transparent);
}

.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--light-gray);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.75rem;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 14vw, 11rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 1.75rem;
}

.hero p {
  font-size: 1rem;
  color: var(--gray);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 3rem;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
  opacity: 0.85;
}

.btn-outline {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.btn-outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

/* NICHE GRID */
.niches {
  padding: 5rem 3rem 7rem;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 2.5rem;
  display: block;
}

.niche-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.niche-card {
  background: var(--black);
  padding: 4rem 3.5rem;
  text-decoration: none;
  color: var(--white);
  display: block;
  transition: background 0.25s;
  min-height: 320px;
}

.niche-card:hover {
  background: #131313;
}

.niche-card:hover .arrow {
  transform: translateX(5px);
}

.niche-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.07);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.niche-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
  line-height: 1;
}

.niche-card p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.arrow {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-gray);
  display: inline-block;
  transition: transform 0.2s;
}

/* HOME CONTACT CTA */
.home-contact {
  padding: 7rem 3rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.home-contact h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.home-contact > p {
  color: var(--gray);
  margin-bottom: 2.75rem;
  font-size: 1rem;
}

.button-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
footer {
  padding: 2rem 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

footer p {
  font-size: 0.78rem;
  color: var(--gray);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.78rem;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

/* NICHE PAGE LAYOUT */
.niche-hero {
  padding: 11rem 3rem 5rem;
  max-width: 860px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gray);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--white);
}

.niche-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 11vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.niche-hero p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

/* VIDEO */
.video-section {
  padding: 0 3rem 6rem;
}

.video-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111111;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--gray);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.video-placeholder span {
  font-size: 2rem;
  opacity: 0.3;
}

/* CONTACT SECTION */
.contact-section {
  padding: 5rem 3rem 7rem;
  border-top: 1px solid var(--border);
  max-width: 580px;
}

.contact-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.contact-section > p {
  color: var(--gray);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem 1.4rem;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--white);
  transition: border-color 0.2s, background 0.2s;
}

.contact-link:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.025);
}

.cl-icon {
  font-size: 1.1rem;
  opacity: 0.6;
  flex-shrink: 0;
}

.cl-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.2rem;
}

.cl-value {
  font-size: 0.9rem;
}

/* FORM */
.inquiry-form {
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.inquiry-form h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  margin-bottom: 1.75rem;
  color: var(--light-gray);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  margin-bottom: 1.1rem;
}

.field label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.45rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.8rem 1rem;
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #444;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(255, 255, 255, 0.5);
}

.field textarea {
  height: 110px;
  resize: vertical;
}

.field select option {
  background: #1a1a1a;
  color: var(--white);
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--white);
  color: var(--black);
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 0.5rem;
}

.form-submit:hover {
  opacity: 0.85;
}

/* REEL GRID (Brand & Social page) */
.reel-section {
  padding: 0 0 6rem;
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #111;
}

.reel-card {
  position: relative;
  aspect-ratio: 9 / 16;
  background: #111;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  overflow: hidden;
}

.reel-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  transition: background 0.25s;
}

.reel-card:hover::before {
  background: rgba(0, 0, 0, 0.2);
}

.reel-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  z-index: 1;
}

.reel-play {
  width: 52px;
  height: 52px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  padding-left: 3px;
  color: rgba(255, 255, 255, 0.85);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.reel-card:hover .reel-play {
  border-color: var(--white);
  color: var(--white);
  transform: scale(1.08);
}

.reel-handle {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.reel-card:hover .reel-handle {
  color: var(--white);
}

/* REEL MODAL */
.reel-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.reel-modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.modal-box {
  position: relative;
  z-index: 1;
}

.modal-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.modal-close:hover {
  opacity: 1;
}

.modal-video iframe {
  display: block;
  border-radius: 4px;
}

/* DJ SETS — two stacked YouTube videos */
.dj-videos {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* TWO-VIDEO GRID */
.videos-grid {
  display: grid;
  grid-template-columns: minmax(320px, 400px) 1fr;
  gap: 2rem;
  align-items: start;
}

.video-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.75rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .niche-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  nav {
    padding: 1.25rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .niches {
    padding: 4rem 1.5rem 5rem;
  }

  .niche-grid {
    grid-template-columns: 1fr;
  }

  .home-contact {
    padding: 5rem 1.5rem;
  }

  footer {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
  }

  .niche-hero {
    padding: 8rem 1.5rem 4rem;
  }

  .video-section {
    padding: 0 1.5rem 4rem;
  }

  .videos-grid {
    grid-template-columns: 1fr;
  }

  .reel-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modal-video iframe {
    width: 290px;
    height: 515px;
  }

  .contact-section {
    padding: 4rem 1.5rem 5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
