/* Home — section background rhythm (black ↔ alt gray) */
.page-home #par-pasakumu {
  background: var(--black);
}
.page-home #daliba,
.page-home #grafiks,
.page-home #biezak {
  background: var(--bg-section);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 80px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  filter: brightness(0.45);
}
.hero-gradient {
  position: absolute; bottom: 0; left: 0; right: 0; height: 55%;
  background: linear-gradient(to top, var(--black) 0%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 4rem 5% 5rem;
  max-width: 760px;
}
.hero-tagline {
  font-size: 1.1rem;
  color: var(--gray);
  font-weight: 400;
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* PHOTO SPLIT */
.photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.photo-split-img {
  background-size: cover;
  background-position: center;
  min-height: 380px;
}
.photo-split-content {
  background: var(--red);
  padding: 4rem 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.photo-split-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.photo-split-content p {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* Hero/hosts images set inline from content JSON */

@media (max-width: 768px) {
  .page-home .hero-actions {
    display: none;
  }
  .photo-split-content {
    padding: 2.5rem 4%;
  }
  .photo-split-content h2 {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
}

@media (max-width: 480px) {
  .photo-split-img {
    min-height: 240px;
  }
}
