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

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #0d0d0d;
  color: #e2ddd6;
  min-height: 100vh;
}

/* HERO — full bleed */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  background: #111;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 700px) {
  .hero {
    height: 65vh;
    min-height: 420px;
  }
}

.hero img {
  position: absolute;
  inset: -15% 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  will-change: transform;
}

/* grain overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,0.55) 0%,
    rgba(13,13,13,0.3) 40%,
    rgba(13,13,13,0.55) 75%,
    rgba(13,13,13,0.97) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 5vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-name {
  font-family: 'Barlow Condensed', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(4rem, 13vw, 10rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e2ddd6;
  margin-bottom: 2.2rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 1.1s ease 0.2s forwards;
}

.hero-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 2.2rem;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 1s ease 0.55s forwards;
}

.hero-nav a {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(226, 221, 214, 0.9);
  font-weight: 300;
  text-decoration: none;
  transition: color 0.25s;
}

.hero-nav a:hover {
  color: #ffffff;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}


/* NAV */
.epk-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 5vw;
  background: rgba(13, 13, 13, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(226, 221, 214, 0.06);
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

.epk-nav.visible {
  transform: translateY(0);
}

.epk-nav ul {
  display: flex;
  list-style: none;
  gap: 2.4rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.epk-nav a {
  display: block;
  padding: 1.1rem 0;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 300;
  color: rgba(226, 221, 214, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.epk-nav a:hover,
.epk-nav a.active {
  color: #e2ddd6;
}

/* Hamburger button — mobile only */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem 0;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: rgba(226, 221, 214, 0.85);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile popout drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-drawer.open {
  opacity: 1;
  pointer-events: all;
}

.nav-drawer a {
  font-size: clamp(1.6rem, 7vw, 2.4rem);
  font-weight: 200;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(226, 221, 214, 0.85);
  text-decoration: none;
  padding: 0.8rem 0;
  transition: color 0.2s;
}

.nav-drawer a:hover { color: #e2ddd6; }

@media (max-width: 700px) {
  .epk-nav ul { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: flex; }
}

@media (max-width: 700px) {
  .hero-nav { display: none; }
}

/* SECTIONS */
.epk-section {
  background: #0d0d0d;
  padding: 6rem 5vw;
  border-top: 1px solid rgba(226, 221, 214, 0.07);
}

.epk-section.alt {
  background: #161616;
}

.epk-inner {
  max-width: 1080px;
  margin: 0 auto;
}

/* BIO TEASER */
.bio-text {
  font-size: 17px;
  line-height: 2;
  color: rgba(226, 221, 214, 0.92);
  font-weight: 300;
  margin-bottom: 1.5em;
}

.bio-text p + p { margin-top: 1.6em; }

.bio-link {
  display: inline-block;
  margin-top: 1.8rem;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 300;
  color: rgba(226, 221, 214, 0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(226, 221, 214, 0.4);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.bio-link:hover {
  color: #e2ddd6;
  border-color: rgba(226, 221, 214, 0.7);
}

/* SECTION HEADINGS */
.highlights-heading {
  font-family: 'Barlow Condensed', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e2ddd6;
  line-height: 1;
  margin-bottom: 2.5rem;
}

/* FOOTER */
.footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(226, 221, 214, 0.08);
  padding: 3.5rem 5vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.footer-name {
  font-family: 'Barlow Condensed', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(226, 221, 214, 0.5);
}

.footer-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.footer-link {
  font-size: 1.4rem;
  color: rgba(226, 221, 214, 0.55);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1;
}

.footer-link:hover { color: #e2ddd6; }

.footer-year {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(226, 221, 214, 0.5);
  font-weight: 300;
  text-align: right;
}

@media (max-width: 600px) {
  .footer {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.4rem;
  }
  .footer-year { text-align: center; }
}

/* VIDEO */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  background: #111;
  border-radius: 4px;
  overflow: hidden;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 600px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* PHOTOS — Flickity carousel */
.photo-carousel {
  margin: 0 -5vw;
}

.photo-carousel .flickity-viewport {
  border-radius: 0;
}

.carousel-cell {
  width: 52%;
  margin-right: 1rem;
  aspect-ratio: 4/3;
  background: rgba(226, 221, 214, 0.04);
  border: 0.5px solid rgba(226, 221, 214, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: zoom-in;
}

.carousel-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

@media (max-width: 600px) {
  .carousel-cell { width: 82%; }
}

/* Flickity buttons */
.flickity-button {
  background: rgba(13, 13, 13, 0.7);
  border-radius: 0;
}

.flickity-button:hover {
  background: rgba(13, 13, 13, 0.9);
}

.flickity-button-icon { fill: rgba(226, 221, 214, 0.85); }

/* Flickity dots */
.flickity-page-dots {
  bottom: -2rem;
}

.flickity-page-dots .dot {
  width: 5px;
  height: 5px;
  background: rgba(226, 221, 214, 0.45);
  opacity: 1;
}

.flickity-page-dots .dot.is-selected {
  background: rgba(226, 221, 214, 0.7);
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 8px 60px rgba(0,0,0,0.8);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 1.6rem;
  color: rgba(226, 221, 214, 0.7);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.lightbox-close:hover { color: #e2ddd6; }

/* LIVE / SHOWS */
.show-year-group {
  margin-bottom: 0.5rem;
}

.show-year-label {
  font-family: 'Barlow Condensed', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(226, 221, 214, 0.65);
  padding: 2.2rem 0 0.6rem;
}

.show-row {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(226, 221, 214, 0.07);
}

.show-row:last-child {
  border-bottom: 1px solid rgba(226, 221, 214, 0.07);
}

.show-date {
  font-size: 13px;
  color: rgba(226, 221, 214, 0.75);
  font-weight: 300;
  letter-spacing: 0.04em;
  min-width: 80px;
  flex-shrink: 0;
}

.show-venue {
  font-size: 15px;
  font-weight: 400;
  color: #e2ddd6;
  min-width: 175px;
  flex-shrink: 0;
}

.show-city {
  font-size: 13px;
  color: rgba(226, 221, 214, 0.75);
  font-weight: 300;
  letter-spacing: 0.04em;
  min-width: 90px;
  flex-shrink: 0;
}

.show-bill {
  font-size: 13px;
  color: rgba(226, 221, 214, 0.7);
  font-weight: 300;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .show-row { flex-wrap: wrap; gap: 0.3rem; }
  .show-venue { min-width: unset; }
  .show-city { min-width: unset; }
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 500px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.contact-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(226, 221, 214, 0.7);
  font-weight: 300;
  margin-bottom: 1rem;
}

.contact-email {
  display: block;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 200;
  color: rgba(226, 221, 214, 0.9);
  text-decoration: none;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  transition: color 0.25s;
  cursor: pointer;
  position: relative;
}

.contact-email:hover { color: #e2ddd6; }

/* Copy tooltip */
.contact-email::after {
  content: attr(data-copied);
  position: absolute;
  left: 0;
  top: -1.8rem;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(226, 221, 214, 0.6);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  white-space: nowrap;
}

.contact-email.copied::after {
  opacity: 1;
}

.contact-note {
  font-size: 14px;
  font-weight: 300;
  color: rgba(226, 221, 214, 0.75);
  line-height: 1.7;
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  width: 40px;
  height: 40px;
  background: rgba(13, 13, 13, 0.85);
  border: 0.5px solid rgba(226, 221, 214, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(226, 221, 214, 0.7);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s, border-color 0.2s;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  color: #e2ddd6;
  border-color: rgba(226, 221, 214, 0.35);
}

/* BIOGRAPHY PAGE */
.bio-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 420px;
  overflow: hidden;
}

.bio-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.bio-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,0.3) 0%,
    rgba(13,13,13,0.15) 40%,
    rgba(13,13,13,0.75) 80%,
    rgba(13,13,13,1) 100%
  );
}

.bio-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 5vw 4vw;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 300;
  color: rgba(226, 221, 214, 0.75);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.back-link:hover { color: #e2ddd6; }

.bio-hero-name {
  font-family: 'Barlow Condensed', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 0.92;
  color: #e2ddd6;
}

.bio-hero-sub {
  margin-top: 1rem;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(226, 221, 214, 0.7);
  font-weight: 300;
}

.bio-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 5vw 8rem;
}

@media (max-width: 600px) {
  .bio-hero { height: 55vh; }
}
