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

:root {
  --black: #0a0a0a;
  --ink: #111111;
  --white: #ffffff;
  --gray: #777777;
  --light-gray: #cccccc;
  --border: rgba(255, 255, 255, 0.1);
  --accent: #e8c88c;
  --accent-soft: rgba(232, 200, 140, 0.18);
}

* {
  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;
  overflow-x: hidden;
}

::selection {
  background: var(--accent);
  color: var(--black);
}

.accent {
  background: linear-gradient(120deg, var(--accent) 0%, #f6e3b7 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* 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: transparent;
  transition: padding 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  padding: 1rem 3rem;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--border);
}

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

nav.scrolled .nav-logo img {
  height: 36px;
}

.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 {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 35%, transparent 75%);
  z-index: -2;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(900px, 90vw);
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 60%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
  animation: heroPulse 8s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-glow { animation: none; }
}

.hero .button-row {
  margin-top: 0;
}


.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: 1.05rem;
  color: var(--light-gray);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* 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);
}

/* SECTION HEADER */
.section-head {
  margin-bottom: 3rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-top: 0.75rem;
}

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

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

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

.niche-card {
  position: relative;
  background: var(--black);
  padding: 4rem 3.5rem;
  text-decoration: none;
  color: var(--white);
  display: block;
  transition: background 0.3s ease, transform 0.3s ease;
  min-height: 320px;
  overflow: hidden;
}

.niche-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.niche-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, var(--accent-soft), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.niche-card:hover {
  background: var(--ink);
}

.niche-card:hover::before,
.niche-card:hover::after {
  opacity: 1;
}

.niche-card:hover .arrow {
  transform: translateX(6px);
  color: var(--white);
}

.niche-card:hover .niche-num {
  color: rgba(232, 200, 140, 0.25);
}

.niche-card:hover h2 {
  color: var(--accent);
}

.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;
  transition: color 0.35s ease;
}

.niche-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.1rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  line-height: 1;
  transition: color 0.35s ease;
}

.niche-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 400px;
}

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

/* NICHE ICONS */
.niche-icon {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 130px;
  height: auto;
  opacity: 0.18;
  transform: rotate(15deg);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  flex-shrink: 0;
}

.niche-card:hover .niche-icon {
  opacity: 0.32;
  transform: rotate(12deg) scale(1.06);
}

/* Per-card icon colours */
.niche-card:nth-child(1) .niche-icon { color: #E63946; } /* music — cinematic red */
.niche-card:nth-child(2) .niche-icon { color: #4A9EDB; } /* corporate — steel blue */
.niche-card:nth-child(3) .niche-icon { color: #F59E0B; } /* brand — warm amber */
.niche-card:nth-child(4) .niche-icon { color: #A78BFA; } /* DJ — electric violet */

/* YOUTUBE LITE EMBED */
.yt-lite {
  cursor: pointer;
}

.yt-lite img.yt-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.yt-lite:hover img.yt-thumb {
  transform: scale(1.02);
}

.yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  width: 72px;
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.6));
  transition: transform 0.2s ease, filter 0.2s ease;
  z-index: 1;
}

.yt-play:hover {
  transform: translate(-50%, -50%) scale(1.12);
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.8));
}

.yt-lite.loaded .yt-thumb,
.yt-lite.loaded .yt-play {
  display: none;
}


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

.home-contact::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, var(--accent-soft), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.home-contact > * {
  position: relative;
  z-index: 1;
}

.home-contact .section-label {
  margin-bottom: 1.5rem;
}

.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(--light-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 {
  position: relative;
  padding: 11rem 3rem 5rem;
  max-width: 860px;
  isolation: isolate;
}

.niche-hero::before {
  content: '';
  position: absolute;
  top: 6rem;
  left: -10rem;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-soft), transparent 60%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}

.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.scrolled {
    padding: 0.9rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 7rem 1.5rem 5rem;
  }

  .hero .button-row {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }

  .hero .button-row .btn-primary,
  .hero .button-row .btn-outline {
    width: 100%;
    text-align: center;
  }

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

  .niche-card {
    padding: 3rem 2rem;
    min-height: 260px;
  }

  .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;
  }
}
