/* ── Hero Section ───────────────────────────────────────────────────── */

.ips-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: var(--ink-bg);
  overflow: hidden;
  padding-block: 0;
}

/* Mandala background layer */
.ips-hero__mandala {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.4);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

/* Snake & skull — right side */
.ips-hero__skull-art {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

/* Particles container */
.ips-hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.ips-hero__particles span.particle {
  position: absolute;
  bottom: -10px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ink-gold);
  animation: particle-rise linear infinite;
  opacity: 0;
}

/* Hero content */
.ips-hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 120px var(--container-pad);
  padding-right: 0;
  margin-left: max(var(--container-pad), calc((100vw - var(--container-max)) / 2 + var(--container-pad)));
}

/* Artist label */
.ips-hero__artist-label {
  display: block;
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-gold);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}

.ips-hero__artist-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--ink-gold), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

/* Headline */
.ips-hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(64px, 9vw, 108px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: var(--ink-text);
  margin-bottom: 24px;
  text-shadow: 0 0 80px rgba(0,0,0,0.8);
}

/* Tagline */
.ips-hero__tagline {
  font-size: 16px;
  color: var(--ink-muted);
  margin-bottom: 40px;
  max-width: 400px;
  line-height: 1.7;
}

/* Location pill */
.ips-hero__location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  font-size: 13px;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
}

/* Scroll indicator */
.ips-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
}

/* Parallax target (JS moves this) */
#ips-hero-content {
  will-change: transform;
}

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ips-hero__headline { font-size: 82px; }
  .ips-hero__skull-art { opacity: 0.35; right: -60px; }
}

@media (max-width: 768px) {
  .ips-hero__headline { font-size: 64px; }
  .ips-hero__skull-art { display: none; }
  .ips-hero__content {
    padding: 100px 24px;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .ips-hero__headline { font-size: 52px; }
}
