@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

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

:root {
  --black: #000000;
  --white: #ffffff;
  --grey-50: #fafafa;
  --grey-100: #f5f5f5;
  --grey-200: #e5e5e5;
  --grey-400: #a3a3a3;
  --grey-500: #737373;
  --grey-600: #525252;
  --grey-800: #262626;
  --grey-900: #171717;
  --grey-950: #0a0a0a;
  --max-width: 1200px;
  --header-height: 72px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  background-color: var(--black);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ─── HEADER ────────────────────────────────────────────────────────────── */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: calc(var(--header-height) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: clamp(1.5rem, 4vw, 3rem);
  padding-right: clamp(1.5rem, 4vw, 3rem);
}

/* removed - header no longer scrolls */

.header-logo img {
  width: 40px;
  height: 40px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.header-logo:hover img {
  opacity: 1;
}

.header-nav {
  display: flex;
  gap: 2.5rem;
}

.header-nav a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.header-nav a:hover {
  opacity: 1;
}

.header-socials {
  display: flex;
  gap: 1.25rem;
}

.header-socials a {
  font-size: 1.1rem;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.header-socials a:hover {
  opacity: 1;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── HERO ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: env(safe-area-inset-top, 0px);
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0) 30%,
      rgba(0, 0, 0, 0.1) 60%,
      rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.5rem, 4vw, 3rem) clamp(3rem, 8vh, 6rem);
  width: 100%;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-kerning: normal;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.hero-scroll {
  position: absolute;
  bottom: clamp(1.5rem, 4vh, 3rem);
  right: clamp(1.5rem, 4vw, 3rem);
  z-index: 2;
}

.hero-socials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-socials a {
  font-size: 1.1rem;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.hero-socials a:hover {
  opacity: 1;
}

.hero-socials .beatport-icon-hero {
  height: 1.1rem;
  width: auto;
  vertical-align: middle;
}

/* ─── SECTIONS ──────────────────────────────────────────────────────────── */
.section {
  padding: clamp(4rem, 10vh, 8rem) clamp(1.5rem, 4vw, 3rem);
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-alt {
  background-color: var(--grey-950);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.section-alt>* {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.5rem, 4vw, 3rem);
  padding-right: clamp(1.5rem, 4vw, 3rem);
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 3rem;
}

/* ─── MUSIC PLATFORMS ───────────────────────────────────────────────────── */
.music-platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
}

.platform-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  background: var(--grey-950);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}

.platform-link:hover {
  background: var(--grey-900);
}

.platform-link i,
.platform-link .beatport-icon {
  font-size: 1.5rem;
  opacity: 0.7;
  width: 1.5rem;
  text-align: center;
}

.beatport-icon {
  height: 1.5rem;
  width: auto;
}

/* ─── ABOUT ─────────────────────────────────────────────────────────────── */
.about-content {
  max-width: 680px;
}

.about-content p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--grey-200);
  margin-bottom: 1.5rem;
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* ─── CONTACT ───────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
}

.contact-block h3 {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 0.75rem;
}

.contact-block a {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--grey-200);
  transition: color 0.2s ease;
  word-break: break-all;
}

.contact-block a:hover {
  color: var(--white);
}

/* ─── FOOTER ────────────────────────────────────────────────────────────── */
.site-footer {
  padding: 3rem clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.footer-socials a {
  font-size: 1.15rem;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.footer-socials a:hover {
  opacity: 1;
}

.footer-socials .beatport-icon {
  height: 1.15rem;
  width: auto;
  vertical-align: middle;
}

.footer-copy {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--grey-500);
  letter-spacing: 0.05em;
}

/* ─── SCREEN READER ─────────────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ─── ANIMATIONS ────────────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ─── RESPONSIVE ────────────────────────────────────────────────────────── */
@media (max-width: 768px) {

  .header-nav,
  .header-socials {
    display: none;
  }

  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }

  .header-nav.open a {
    font-size: 1.2rem;
    opacity: 0.9;
  }

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

  .hero-title {
    font-size: clamp(2.8rem, 13vw, 5rem);
  }

  .hero-socials {
    flex-direction: row;
    gap: 0.9rem;
    flex-wrap: wrap;
  }

  .hero-socials a {
    font-size: 1rem;
  }

  .hero-socials .beatport-icon-hero {
    height: 1rem;
  }

  .hero-scroll {
    right: auto;
    left: clamp(1.5rem, 4vw, 3rem);
    bottom: clamp(1.5rem, 4vh, 2.5rem);
  }

  .hero {
    min-height: 500px;
  }

  .hero-content {
    padding-bottom: clamp(4.5rem, 12vh, 7rem);
  }

  .music-platforms {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}