/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero__content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__title {
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 18px;
  color: var(--ink-0);
}
.hero__title span { color: var(--stik-300); }
.hero__placeholder {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-3);
  padding: 10px 14px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--rad-sm);
  background: rgba(255,255,255,0.02);
  display: inline-block;
  margin-bottom: 28px;
}
.hero__ctas {
  display: flex; gap: 10px; flex-wrap: wrap;
}

/* hero stage: clean rounded image card with quiet crossfade */
.hero__stage {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--rad-xl);
  overflow: hidden;
  background: var(--bg-1);
  border: 1px solid var(--line);
  margin: 0;
}
.hero__stage-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 700ms var(--ease-out);
}
.hero__stage-img.is-active { opacity: 1; }

.hero__stage-meta {
  position: absolute; left: 14px; bottom: 14px; right: 14px;
  display: flex; justify-content: space-between; align-items: end; gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--ink-1);
}
.hero__stage-id {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero__stage-counter { color: var(--ink-2); }

@media (max-width: 900px) {
  .hero { padding: 110px 0 56px; }
  .hero__content { grid-template-columns: 1fr; gap: 32px; }
  .hero__stage { max-width: 460px; aspect-ratio: 3/4; }
}
@media (max-width: 540px) {
  .hero { padding: 96px 0 40px; }
  .hero__title { font-size: clamp(2rem, 9vw, 2.6rem); }
}

/* ===== Mosaic preview (true masonry, no cropping) ===== */
.mosaic {
  padding-block: clamp(56px, 8vw, 96px);
}
.mosaic__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px; gap: 24px;
}
.mosaic__head h2 { font-weight: 500; }

.mosaic__grid {
  column-count: 4;
  column-gap: 10px;
}
@media (max-width: 1100px) { .mosaic__grid { column-count: 3; } }
@media (max-width: 720px)  { .mosaic__grid { column-count: 2; } }

.mosaic__cell {
  display: block;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin: 0 0 10px;
  border-radius: var(--rad-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-1);
  transition: border-color var(--dur-1) var(--ease-out);
}
.mosaic__cell:hover { border-color: var(--line-strong); }
.mosaic__cell img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== End CTA ===== */
.endcap {
  padding-block: clamp(56px, 8vw, 96px);
  text-align: center;
}
.endcap__title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 auto 22px;
  color: var(--ink-0);
}
