/* ===== FONTS ===== */
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.otf') format('opentype');
  font-weight: 700 800;
  font-style: normal;
  font-display: swap;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --accent-color: #01e1ff;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Satoshi', sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  color: inherit;
}

/* ===== UTILITY ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 5rem;
  }
}

.section-spacing {
  padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
  .section-spacing {
    padding: 7rem 3rem;
  }
}

@media (min-width: 1024px) {
  .section-spacing {
    padding: 9rem 5rem;
  }
}

.scroll-mt {
  scroll-margin-top: var(--navbar-height, 5.25rem);
}

.section-screen {
  min-height: calc(100dvh - var(--navbar-height, 5.25rem));
  display: flex;
  align-items: center;
}

.text-primary {
  color: var(--accent-color);
}

.bg-primary {
  background-color: var(--accent-color);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-up {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scale-up.visible {
  opacity: 1;
  transform: scale(1);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/* ===== MARQUEE ===== */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  overflow: hidden;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
}

.marquee-track {
  display: flex;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.7);
}

.marquee-dot {
  color: var(--accent-color);
  font-size: 1.5rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #121212;
  transition: all 0.3s ease;
  padding: 1.25rem 0;
}

.navbar.scrolled {
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .navbar-inner {
    padding: 0 3rem;
  }
}

.navbar-logo img {
  height: 2.75rem;
}

.navbar-links {
  display: none;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .navbar-links {
    display: flex;
  }
}

.navbar-links a {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
  font-weight: 400;
}

.navbar-links a:hover {
  color: #fff;
}

.navbar-contact {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  transition: color 0.2s;
}

@media (min-width: 768px) {
  .navbar-contact {
    display: flex;
  }
}

.navbar-contact:hover {
  color: var(--accent-color);
}

.navbar-contact svg {
  width: 1rem;
  height: 1rem;
}

/* Player toggle button */
.player-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.player-toggle svg {
  width: 2rem;
  height: 2rem;
}

.player-toggle .player-toggle-bg {
  transition: fill 0.2s;
}

.player-toggle:hover .player-toggle-bg {
  fill: #fff;
}

/* SoundCloud player panel */
.navbar-player {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.navbar-player.open {
  max-height: 100px;
  padding: 0.75rem 3rem 0 3rem;
}

@media (min-width: 768px) {
  .navbar-player {
    padding: 0 3rem;
  }
}

.navbar-player iframe {
  border-radius: 4px;
}

/* Mobile menu */
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

@media (min-width: 768px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1.5rem 1.5rem;
  background: #121212;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.open {
  display: flex;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu a {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: #fff;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video--mobile {
  display: block;
}

.hero-video--desktop {
  display: none;
}

@media (min-width: 768px) {
  .hero-video--mobile {
    display: none;
  }

  .hero-video--desktop {
    display: block;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: left;
  padding: 0 1.5rem;
  max-width: 900px;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.accent {
  color: var(--accent-color);
}

.hero-title .italic {
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 0 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  justify-content: flex-start;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background: var(--accent-color);
  color: #000;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 0.5rem;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  transition: background 0.2s, border-color 0.2s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ===== STUDIO GALLERY ===== */
.studio-section {
  background: #000;
}

.studio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .studio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.studio-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  cursor: pointer;
}

.studio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-out;
}

.studio-card:hover img {
  transform: scale(0.92);
}

.studio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
}

.studio-card-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.studio-card:hover .studio-card-label {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CONCEPT ===== */
.concept-section {
  background: #000;
}

.concept-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.concept-heading {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.concept-subheading {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.concept-text {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.concept-text p {
  margin-bottom: 1rem;
}

/* ===== FOUNDER ===== */
.founder-section {
  background: #121212;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .founder-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.founder-img-wrapper {
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.founder-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 2rem;
}

.founder-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.founder-text p {
  margin-bottom: 1rem;
}

/* ===== SERVICES ===== */
.services-section {
  background: #000;
}

.services-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #121212;
  transition: border-color 0.3s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--accent-color);
}

.service-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, #121212 100%);
}

.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(212, 255, 1, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.service-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.service-card-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-card-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  flex: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-color);
  transition: gap 0.2s;
}

.service-card:hover .service-card-link {
  gap: 0.75rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--accent-color);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.cta-banner a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 800;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap 0.3s;
}

.cta-banner a:hover {
  gap: 1.25rem;
}

.cta-banner svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* ===== ROSTER ===== */
.roster-section {
  background: #121212;
}

.roster-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 3rem;
}

.roster-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .roster-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.roster-card {
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.roster-card-img {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.roster-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  /*filter: grayscale(0.8);*/
}

.roster-card-img.position-top img {
  object-position: center top;
}

.roster-card-img.position-top-25 img {
  object-position: center 30%;
}

.roster-card:hover .roster-card-img img {
  transform: scale(1.05);
}

.roster-card-body {
  padding: 2rem;
}

.roster-card-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.roster-card-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ===== LISTEN ===== */
.listen-section {
  background: #121212;
}

.listen-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.listen-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}

.listen-player {
  border-radius: 12px;
  overflow: hidden;
}

/* ===== LOCATION ===== */
.location-section {
  background: #000;
}

.location-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.location-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.location-subtext {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  margin-bottom: 2.5rem;
}

.location-map {
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 2rem;
}

.location-map iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

.location-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

.location-label svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent-color);
}

/* ===== CONTACT ===== */
.contact-section {
  background: #000;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.contact-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.contact-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.contact-desc p {
  margin-bottom: 0.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  color: #fff;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-color);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: #121212;
  color: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem;
  text-align: center;
}

.form-success.show {
  display: flex;
}

.form-success-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(212, 255, 1, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
}

.form-success-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.form-success p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.0625rem;
}

.form-error {
  display: none;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.4);
  border-radius: 0.5rem;
  color: #fca5a5;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.form-error.show {
  display: block;
}

.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Visually hidden but accessible to screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: #121212;
  padding: 3rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .footer-left {
    align-items: flex-start;
  }
}

.footer-logo {
  height: 2rem;
}

.footer-location {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

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

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-agency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-agency-logo {
  height: 1rem;
}