/* ═══════════════════════════════════════════════════════════════
   HERO SPLIT SECTION — HVM Light Theme
   Navy #1B2D5B · Red #C22032 · White bg
   ═══════════════════════════════════════════════════════════════ */

/* ── Reset / base ───────────────────────────────────────────── */
.hero--split {
  display: flex;
  align-items: stretch;
  min-height: 100svh;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--clr-white, #ffffff);
}

/* ══════════════════════════════════════════════════════════════
   LEFT PANEL
   ══════════════════════════════════════════════════════════════ */
.hero-left {
  position: relative;
  z-index: 3;
  width: 50%;
  display: flex;
  align-items: center;
  padding: 8rem 4rem 4rem 5vw;
  background: var(--clr-white, #ffffff);
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.hero-left-inner {
  max-width: 520px;
  width: 100%;
}

/* Tag */
.hero--split .hero-tag {
  display: inline-block;
  font-family: var(--ff-body, 'DM Sans', sans-serif);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-red, #C22032);
  border: 1px solid rgba(194, 32, 50, 0.35);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.6rem;
  animation: heroFadeUp 0.8s 0.2s both ease;
}

/* Headline */
.hero-title {
  font-family: var(--ff-display, 'Cinzel', serif);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  color: var(--clr-heading, #111111);
  line-height: 1.18;
  margin-bottom: 2rem;
  animation: heroFadeUp 0.8s 0.35s both ease;
}

.hero-gold {
  color: var(--clr-red, #C22032);
  font-style: italic;
}

/* Meta grid */
.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  margin-bottom: 2.2rem;
  animation: heroFadeUp 0.8s 0.5s both ease;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(27, 45, 91, 0.10);
}

.meta-label {
  font-family: var(--ff-body, 'DM Sans', sans-serif);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--clr-muted, #5c6272);
}

.meta-value {
  font-family: var(--ff-display, 'Cinzel', serif);
  font-size: 0.88rem;
  color: var(--clr-heading, #111111);
  letter-spacing: 0.03em;
}

/* CTA buttons */
.hero--split .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
  animation: heroFadeUp 0.8s 0.65s both ease;
}

/* ── Dot navigation ─────────────────────────────────────────── */
.hero-dots {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  animation: heroFadeUp 0.8s 0.75s both ease;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(27, 45, 91, 0.18);
  cursor: pointer;
  padding: 0;
  transition: background 0.35s ease, width 0.35s ease, border-radius 0.35s ease;
}

.hero-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--clr-red, #C22032);
}

/* ══════════════════════════════════════════════════════════════
   RIGHT PANEL – Slider
   ══════════════════════════════════════════════════════════════ */
.hero-right {
  position: relative;
  flex: 1;
  overflow: hidden;
  background: var(--clr-offwhite, #f6f7f9);
}

/* ── Individual slides ──────────────────────────────────────── */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.04);
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-slide.leaving {
  opacity: 0;
  transform: scale(0.97);
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Gradient overlay on slide — lighter blend toward the white left panel */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.08) 40%,
    transparent 100%
  );
  pointer-events: none;
}

/* "Artistic Impression" badge */
.hero-slide-tag {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(27, 45, 91, 0.55);
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
  font-family: var(--ff-body, 'DM Sans', sans-serif);
}

/* ── Arrows ─────────────────────────────────────────────────── */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(27, 45, 91, 0.3);
  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  padding: 0;
}

.hero-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--clr-navy, #1B2D5B);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-arrow--prev { left: 1rem; }
.hero-arrow--next { right: 1rem; }

.hero-arrow:hover {
  background: var(--clr-navy, #1B2D5B);
  border-color: var(--clr-navy, #1B2D5B);
  transform: translateY(-50%) scale(1.08);
}

.hero-arrow:hover svg {
  stroke: #fff;
}

/* ── Progress bar ───────────────────────────────────────────── */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(27, 45, 91, 0.08);
  z-index: 10;
}

.hero-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--clr-red, #C22032);
  transition: width 0.1s linear;
}

/* ── Keyframes ──────────────────────────────────────────────── */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero--split {
    flex-direction: column-reverse;
    min-height: 100svh;
  }

  .hero-left {
    width: 100%;
    clip-path: none;
    padding: 3rem 1.5rem 4rem;
    align-items: flex-start;
  }

  .hero-right {
    width: 100%;
    height: 52vw;
    min-height: 240px;
    max-height: 420px;
    flex: none;
  }

  .hero-meta {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .hero-meta {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1rem;
  }

  .hero--split .hero-actions {
    flex-direction: column;
  }

  .hero-arrow {
    width: 36px;
    height: 36px;
  }

  .hero-arrow svg {
    width: 14px;
    height: 14px;
  }
}
