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

:root {
  --bg:      #0a0a0a;
  --bg2:     #111111;
  --bg3:     #1a1a1a;
  --white:   #ffffff;
  --gray:    #888888;
  --red:     #c0392b;
  --gold:    #c9a84c;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-script:  'Dancing Script', cursive;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: rgba(10,10,10,0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-logo {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--red); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 70px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem 4rem 2.5rem;
  background: var(--bg);
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 9vw, 9rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 2rem;
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--bg3);
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--white);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.8rem 1.4rem;
  width: fit-content;
  cursor: pointer;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.btn:hover { background: var(--white); color: var(--bg); }

.btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: var(--gray);
}
.btn-outline:hover { background: transparent; color: var(--white); border-color: var(--white); }

.btn-full { width: 100%; justify-content: center; }

/* ── SECTIONS ── */
.section {
  padding: 5.5rem 2.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3rem;
}

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

.section-line {
  width: 2.5rem;
  height: 1px;
  background: var(--gray);
}

/* ── MUSIC ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  background: var(--bg3);
  overflow: hidden;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg3);
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}
.video-thumb:hover img { opacity: 0.6; }

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s;
}
.video-thumb:hover .play-btn { opacity: 1; }

.music-cta {
  display: flex;
  justify-content: flex-end;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.about-photo {
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg3);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(20%);
  transition: filter 0.4s;
}
.about-photo:hover img { filter: grayscale(0%); }

.about-name {
  font-family: var(--font-display);
  font-size: 2.6rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}

.about-location {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.about-bio {
  font-size: 0.95rem;
  color: #c5c5c5;
  line-height: 1.85;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 0.6rem;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--bg3);
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.social-icon:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }

/* ── CONTACT ── */
.contact-sub {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

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

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

.contact-form input,
.contact-form textarea {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.07);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.9rem 1rem;
  outline: none;
  resize: none;
  width: 100%;
  transition: border-color 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--gray); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: rgba(255,255,255,0.25); }

/* ── FOOTER ── */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2.5rem 2.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.footer-img {
  width: min(340px, 80vw);
  opacity: 0.75;
  filter: brightness(0.95);
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 0.12em;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav { padding: 1rem 1.25rem; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    inset: 65px 0 0 0;
    background: var(--bg);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links.open a { font-size: 1.1rem; }
  .nav-toggle { display: block; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 55vw; }
  .hero-left { padding: 3rem 1.25rem; }

  .section { padding: 3.5rem 1.25rem; }

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

  .about-grid { grid-template-columns: 1fr; }
  .about-photo { aspect-ratio: 3/4; max-width: 320px; margin: 0 auto; }

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

  .footer { padding: 2rem 1.25rem 1.5rem; }
}
