/* ============================================================
   SALAD WORLD RECORDS
   ============================================================ */

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

:root {
  --bg:   #0d0d0d;
  --text: #c8c4bc;
  --dim:  #424040;
  --rule: #1e1e1e;
  --mono: "IBM Plex Mono", "Courier New", monospace;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--mono);
  font-weight: 300;
  overflow-x: hidden;
}

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

/* ── no padding-top needed — no fixed header ─────────── */
.site-main { min-height: 100vh; }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.04) 55%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 40px 32px;
}

.hero__brand { display: flex; flex-direction: column; gap: 10px; }

.hero__name {
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}

.hero__tagline {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  font-style: italic;
}

/* ── SECTIONS ───────────────────────────────────────────── */
.section { border-top: 1px solid var(--rule); }

.section__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 32px 80px;
}

.section__label {
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 40px;
}

/* ── SPOTIFY ────────────────────────────────────────────── */
.spotify-wrap iframe {
  display: block;
  border: 1px solid var(--rule);
}

/* ── INFO ───────────────────────────────────────────────── */
.info-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-bio {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text);
  max-width: 48ch;
}

.info-services {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
}

.info-contact {
  font-size: 0.85rem;
  color: var(--dim);
}

.copy-email {
  cursor: pointer;
  border-bottom: 1px solid var(--rule);
  transition: border-color 0.15s, color 0.15s;
}
.copy-email:hover { color: var(--text); border-color: var(--text); }

.info-social {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 6px;
}
.info-social a, .contact-social a {
  color: var(--dim);
  border-bottom: 1px solid var(--rule);
  transition: color 0.15s, border-color 0.15s;
}
.info-social a:hover, .contact-social a:hover { color: var(--text); border-color: var(--text); }
.social-sep { margin: 0 8px; }

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-block .copy-email {
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}
.contact-social {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ── GALLERY — scroll-driven ────────────────────────────── */
.gallery-section {
  border-top: 1px solid var(--rule);
  padding: 32px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-sticky {
  display: contents;
}

.gallery-label {
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dim);
  padding: 0 32px;
  flex-shrink: 0;
}

.gallery-hint {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
  padding: 0 32px;
  flex-shrink: 0;
  opacity: 1;
  transition: opacity 0.4s;
}
.gallery-hint.hidden { opacity: 0; }

.filmstrip {
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex-shrink: 0;
}
.filmstrip::-webkit-scrollbar { display: none; }

.filmstrip__track {
  display: flex;
  gap: 3px;
}

.filmstrip__item {
  flex-shrink: 0;
  height: clamp(240px, 45vh, 420px);
  overflow: hidden;
}
.filmstrip__item img {
  height: 100%;
  width: auto;
  display: block;
  opacity: 0.88;
  transition: opacity 0.25s;
  pointer-events: none;
}
.filmstrip__item:hover img { opacity: 1; }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  display: flex;
  align-items: center;
  padding: 20px 32px;
  border-top: 1px solid var(--rule);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
}
.site-footer__rule {
  flex: 1;
  border-bottom: 1px solid var(--rule);
  margin: 0 16px;
  height: 1px;
  display: block;
}
.site-footer__email:hover { color: var(--text); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero {
    height: auto;
  }
  .hero__img {
    object-fit: unset;
    width: 100%;
    height: auto;
  }
  .hero__overlay {
    position: relative;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 100%);
    padding: 28px 20px;
    margin-top: -80px;
  }
  .hero__name { font-size: 1.3rem; }
  .section__inner { padding: 48px 20px 64px; }
  .info-bio { font-size: 1rem; }
  .gallery-label,
  .gallery-hint { padding: 0 20px; }
}
