/* Artistic Parallax Hero - inspired by SR "Artistic Parallax" feel */
.kt-hero {
  --noise-opacity: .06;
  --grain-size: 220px;
  --stroke: rgba(255,255,255,.22);
  --ink: rgba(255,255,255,.12);
  --accent: #8ef0c1;
  --accent-2: #68e1a5;
}
.kt-word, .kt-char, .kt-space { display: inline-block; will-change: transform, opacity; }

/* Multi-layer parallax containers */
.kt-hero__layers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.kt-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(0,0,0,.25);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
  backdrop-filter: blur(4px);
}
.kt-nav:hover { background: rgba(0,0,0,.38); transform: translateY(-50%) scale(1.05); border-color: rgba(255,255,255,.8); }
.kt-nav--prev { left: 18px; }
.kt-nav--next { right: 18px; }

.kt-hero__layer {
  position: absolute;
  inset: -4%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .95;
  mix-blend-mode: normal;
}

/* Ink / brush decor */
.kt-hero__brush,
.kt-hero__stroke {
  position: absolute;
  pointer-events: none;
  opacity: .85;
  filter: drop-shadow(0 12px 34px rgba(0,0,0,.28));
}

.kt-hero__stroke svg path {
  stroke: var(--stroke);
  stroke-width: 2.5;
  fill: none;
}

/* Noise overlay for cinematic texture */
.kt-hero::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,var(--noise-opacity)) 0 1px, transparent 1px),
    radial-gradient(circle at 60% 70%, rgba(255,255,255,var(--noise-opacity)) 0 1px, transparent 1px);
  background-size: var(--grain-size) var(--grain-size);
  mix-blend-mode: overlay;
  z-index: 1;
}
.kt-hero__stroke svg {
  width: 100%;
  height: auto;
}
.kt-hero__stroke svg path {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  transition: stroke 0.3s ease;
}

/* Title emphasis: subtle underline accent */
.kt-hero__title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;
  width: clamp(100px, 36vw, 420px);
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 40%, var(--accent-2) 60%, transparent 100%);
  opacity: .65;
}

/* Position some decor similar to SR art direction */
.kt-hero__brush--1 { top: 8%; left: 6%; width: clamp(140px, 22vw, 260px); rotate: -6deg; }
.kt-hero__brush--2 { bottom: 10%; right: 8%; width: clamp(120px, 18vw, 220px); rotate: 8deg; }
.kt-hero__stroke--1 { top: 18%; right: 16%; width: clamp(140px, 20vw, 240px); }
.kt-hero__stroke--2 { bottom: 18%; left: 12%; width: clamp(120px, 18vw, 220px); }

/* Layer depth hints (can be image URLs via inline style) */
.kt-hero__layer--back { opacity: .85; }
.kt-hero__layer--mid { opacity: .92; }
.kt-hero__layer--front { opacity: .97; }

/* Blur in scroll dissolve */
.kt-hero[data-scroll-dissolve="on"] .kt-hero__inner {
  will-change: transform, filter, opacity;
}

/* Responsiveness tweaks */
@media (max-width: 768px) {
  .kt-hero__title { font-size: clamp(28px, 7vw, 40px); }
  .kt-hero__subtitle { font-size: clamp(14px, 3.6vw, 18px); }
  .kt-nav { width: 40px; height: 40px; }
  .kt-nav--prev { left: 10px; }
  .kt-nav--next { right: 10px; }
}
