/* === FIVEANDSIX — Shared Styles === */

/* ---------- Colors & Reset ---------- */
:root {
  --ink: #0E0E0E;
  --red: #8C1F1B;
  --bone: #F4EFE6;
  --rust: #5C1512;
  --grey: #8C8477;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--bone);
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
}

.display { font-family: 'Anton', sans-serif; text-transform: uppercase; letter-spacing: 0.01em; }
.mono { font-family: 'IBM Plex Mono', monospace; text-transform: uppercase; letter-spacing: 0.12em; }
a { color: inherit; text-decoration: none; }

/* ---------- Section shared ---------- */
section { padding: 110px 6vw; position: relative; }
.eyebrow { font-size: 11px; color: var(--red); margin-bottom: 20px; display: block; }

/* ---------- NAV ---------- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 5vw;
  background: var(--ink);
  border-bottom: 1px solid rgba(244,239,230,0.1);
}
.nav-mark { display: block; line-height: 0; }
.nav-mark img { height: 34px; width: auto; display: block; }
.nav-links { display: flex; gap: 36px; }
.nav-links a { font-size: 14px; color: var(--bone); position: relative; padding-bottom: 4px; }
.nav-links a.active { color: var(--red); mix-blend-mode: normal; font-weight: 600; }
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--bone);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

/* ---------- FOOTER ---------- */
footer { background: var(--bone); color: var(--ink); padding: 100px 6vw 40px; }
.footer-cta h2 { font-family: 'Anton', sans-serif; font-size: clamp(38px, 7vw, 90px); line-height: 0.95; max-width: 900px; }
.footer-cta a.cta-link {
  display: inline-block; margin-top: 30px; font-size: 14px;
  background: var(--ink); color: var(--bone); padding: 16px 30px; border-radius: 999px;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 100px; padding-top: 24px; border-top: 1px solid rgba(14,14,14,0.15);
  font-size: 12px; color: rgba(14,14,14,0.6); flex-wrap: wrap; gap: 16px;
}
.footer-socials { display: flex; gap: 20px; }

/* ---------- FOCUS ---------- */
a:focus-visible, button:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

/* ---------- MOBILE NAV ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 210;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bone);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 78px;
  left: 0;
  right: 0;
  background: var(--ink);
  border-bottom: 1px solid rgba(244,239,230,0.12);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 0;
  gap: 24px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--bone);
}
.mobile-menu a.active { color: var(--red); }

@media (max-width: 560px) {
  .nav-toggle { display: flex; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  section { padding: 90px 6vw; }
}
@media (max-width: 560px) {
  .nav-links { display: none; }
}

/* ---------- TALENT BIO HERO ---------- */
.artist-hero {
  position: relative;
}
.artist-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 6vw 70px;
  width: 100%;
}
.artist-hero .eyebrow {
  color: var(--bone);
  font-size: 12px;
  margin-bottom: 14px;
  display: block;
}
.artist-hero h1 {
  font-size: clamp(52px, 10vw, 130px);
  line-height: 0.9;
  color: var(--bone);
}
.artist-tags {
  margin-top: 20px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.artist-tags span {
  font-size: 11px;
  color: var(--bone);
  border: 1px solid rgba(244,239,230,0.4);
  padding: 6px 14px;
  border-radius: 999px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
