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

:root {
  --bg:          #0c0c0c;
  --bg-2:        #111111;
  --bg-3:        #181818;
  --border:      rgba(255,255,255,0.08);
  --text:        #e8e8e8;
  --text-muted:  #888;
  --text-dim:    #555;
  --accent:      #c8a96e;        /* warm gold */
  --accent-dark: #9e7d44;
  --font-sans:   'DM Sans', system-ui, sans-serif;
  --font-mono:   'DM Mono', monospace;
  --radius:      4px;
  --section-gap: 8rem;
  --nav-h:       64px;
  --max-w:       1280px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

.hidden { display: none !important; }


/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.section {
  padding-block: var(--section-gap);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #0c0c0c;
  border-color: var(--accent);
}
.btn-primary:hover { background: #d9bb82; border-color: #d9bb82; }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.25);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }


/* ============================================================
   NAV
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.3s, backdrop-filter 0.3s, border-bottom 0.3s;
}

#site-header.scrolled {
  background: rgba(12,12,12,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.nav-logo {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-links .nav-cta {
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  color: var(--text);
  transition: border-color 0.2s, color 0.2s;
}
.nav-links .nav-cta:hover { border-color: var(--accent); color: var(--accent); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
  /* fallback if image not found */
  background-color: #0c0c0c;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12,12,12,0.2) 0%,
    rgba(12,12,12,0.35) 60%,
    rgba(12,12,12,0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 2rem;
  max-width: 720px;
  /* subtle dark scrim behind text only */
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 75%);
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  text-shadow: 0 1px 4px rgba(0,0,0,1), 0 2px 12px rgba(0,0,0,0.9);
}

.hero-name {
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.hero-tagline {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(232,232,232,0.9);
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-inline: auto;
  text-shadow: 0 1px 8px rgba(0,0,0,0.9);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-muted);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}


/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg-2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.about-photo-wrap {
  position: relative;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: 2px;
  filter: grayscale(20%);
  /* placeholder styles if image missing */
  background: var(--bg-3);
  min-height: 300px;
}

.about-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  pointer-events: none;
}

.about-text h2 { margin-bottom: 1.5rem; }

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.02rem;
  line-height: 1.75;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.service-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-muted);
}


/* ============================================================
   CREDITS
   ============================================================ */
.credits { background: var(--bg); }

.credits-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 0.75rem;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.filter-group label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pill {
  padding: 0.3rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.pill:hover { border-color: rgba(255,255,255,0.2); color: var(--text); }
.pill.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0c0c0c;
}

.credits-count {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-bottom: 1.75rem;
  letter-spacing: 0.06em;
}

.credits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 2px;
}

.credit-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-3);
}

.credit-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.3s;
  filter: grayscale(15%);
}

.credit-item:hover img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

.credit-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0) 60%);
  opacity: 0;
  transition: opacity 0.25s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.75rem;
}

.credit-item:hover .credit-hover { opacity: 1; }

.credit-hover-artist {
  font-size: 0.72rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.credit-hover-title {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.credit-item.hidden-item { display: none; }

/* placeholder for missing images */
.credit-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-3);
  color: var(--text-dim);
  font-size: 0.65rem;
  font-family: var(--font-mono);
  text-align: center;
  padding: 0.5rem;
}


/* ============================================================
   MEDIA
   ============================================================ */
.media { background: var(--bg-2); }

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.media-item {}

.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-3);
  border-radius: var(--radius);
  overflow: hidden;
}

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

.media-caption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}


/* ============================================================
   RECENT CAROUSEL
   ============================================================ */
.recent { background: var(--bg); padding-bottom: 3rem; }

.carousel-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 2rem;
}

.carousel-track-wrap {
  overflow: hidden;
  flex: 1;
  /* hide partial slides at edges */
  mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

.carousel-track {
  display: flex;
  gap: 0.75rem;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  padding-inline: 1rem;
}

.carousel-slide {
  flex-shrink: 0;
  width: clamp(220px, 28vw, 340px);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg-3);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.3s;
  filter: grayscale(10%);
}

.carousel-slide:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

/* placeholder style when image is missing */
.carousel-slide img[src=""], .carousel-slide img:not([src]) {
  display: none;
}
.carousel-slide:has(img[src=""]) {
  background: var(--bg-3);
  border: 1px dashed var(--border);
}

.carousel-btn {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
  z-index: 2;
  margin-inline: 0.75rem;
}
.carousel-btn:hover { background: rgba(255,255,255,0.12); color: #fff; }
.carousel-btn:disabled { opacity: 0.2; cursor: default; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
}

.carousel-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-dim);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

@media (max-width: 700px) {
  .carousel-btn { width: 2rem; height: 2rem; font-size: 1.2rem; margin-inline: 0.4rem; }
  .carousel-slide { width: clamp(160px, 72vw, 260px); }
}


/* ============================================================
   BOOKING
   ============================================================ */
.booking { background: var(--bg); }

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.booking-text h2 { margin-bottom: 1.25rem; }

.booking-text p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  line-height: 1.75;
}

.booking-note {
  font-size: 0.82rem !important;
  color: var(--text-dim) !important;
  font-style: italic;
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}

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

.form-hint {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.45;
}

.form-group input,
.form-group textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  padding: 0.7rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(200, 169, 110, 0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.btn-submit {
  align-self: flex-start;
  margin-top: 0.5rem;
  padding: 0.85rem 2.25rem;
  font-size: 0.92rem;
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding-block: 2.5rem;
  background: var(--bg);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-name {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.footer-social {
  display: flex;
  gap: 1.25rem;
}

.footer-social a {
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--text); }

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-dim);
}


/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 201;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

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

.lightbox-inner {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  max-width: 860px;
  width: 100%;
}

.lb-img-wrap {
  position: relative;
  flex-shrink: 0;
  width: 280px;
}

.lightbox-close {
  position: absolute;
  top: -0.6rem;
  right: -0.6rem;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1;
  width: 1.8rem;
  height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  z-index: 1;
}
.lightbox-close:hover { color: #fff; background: rgba(0,0,0,0.85); }

#lb-img {
  width: 280px;
  display: block;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.lb-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lb-artist {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
}

.lb-title {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 300;
}

.lb-roles {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.lb-year {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
}

.lb-info .btn {
  margin-top: 1rem;
  align-self: flex-start;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { aspect-ratio: 4 / 3; max-height: 420px; }
  .booking-inner { grid-template-columns: 1fr; }
  .lightbox-inner { flex-direction: column; }
  #lb-img { width: 200px; }
}

@media (max-width: 700px) {
  :root { --section-gap: 5rem; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(12,12,12,0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 1.5rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
  }

  .nav-links.open { transform: translateY(0); }

  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.85rem clamp(1.25rem, 5vw, 3rem);
    font-size: 1rem;
    border-radius: 0;
  }
  .nav-links .nav-cta {
    border: none;
    padding: 0.85rem clamp(1.25rem, 5vw, 3rem);
  }

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

  .credits-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

  .lightbox { padding: 1rem; }
  .lightbox-inner { gap: 1.25rem; }
  .lb-img-wrap { width: 140px; }
  .lightbox-close { top: -0.5rem; right: -0.5rem; }
  .lb-artist { font-size: 1.1rem; }
}

@media (max-width: 420px) {
  .credits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
