/* ============================================
   SHIKÚ — CTA Brand Section
   ============================================ */

.cta-section {
  position: relative;
  height: 770px;
  overflow: hidden;
  margin-top: 64px;
}
.cta-section__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.cta-section__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.48) 0%, rgba(0,0,0,.12) 55%, transparent 100%);
}
.cta-section__content {
  position: relative; z-index: 2;
  padding: 120px var(--px-desktop) 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cta-section__heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 64px;
  color: var(--color-white);
  line-height: 82px;
  letter-spacing: -4px;
  max-width: 920px;
}
.cta-section__tags {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 24px;
  padding: 24px 0;
}
.cta-section__tag {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-white);
  line-height: 18px;
  display: flex; flex-direction: column;
}
.cta-section__tag--right { align-self: flex-end; }

/* ── Mobile ── */
@media (max-width: 768px) {
  .cta-section { height: 432px; margin-top: 0; }
  .cta-section__content {
    padding: 156px var(--px-mobile) 24px;
    justify-content: flex-end;
  }
  .cta-section__heading {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -2px;
    max-width: 340px;
  }
  .cta-section__tags { display: none; }
}
